Kuehne + Nagel LTL+
  1. Load Tendering
Kuehne + Nagel LTL+
  • Overview
    • Introduction
    • Acceptable Use Policy
    • Support & Feedback
  • API
    • Overview
    • Full Integration API Workflow
    • Accessorials
      • Accessorial - Retrieve all accessorial charge codes
    • BillOfLading
      • BOL - Create a bill of lading PDF
    • Quoting
      • RateQuote - Submit a quote request
      • RateQuote - Submit a quote request for multiple points
    • Document Retrieval
      • GetImageList - Retrieve list of available shipment documents
      • GetImage - Retrieve shipping documents based on DocumentID
    • Invoice
      • Invoice - Retrieve a single invoice or pull an entire week of invoices
    • Shipment Tracking
      • HTML Tracking Link Generation
      • TrackingList - Get a list of shipment tracking information
      • TrackingDetails - Retrieve all the tracking details related to a shipment
    • Load Tendering
      • LoadTender - Tender a shipment
        POST
      • LoadTender - Tender a shipment
        POST
    • Transit
      • Transit - Receive transit time for a shipment lane.
    • Orders
      • Order
      • OrderDetails
  • EDI
    • Overview
    • 210 - Freight Details and Invoice
    • 214 - Transportation Carrier Shipment Status Message
    • Segments
      • 210/214 - 0100 Location Loop (N1 Loop)
      • 210 - 0400 Detail Loop (LX Loop)
      • 214 - 0205 Shipment Status Details (AT7 Loop)
  1. Load Tendering

LoadTender - Tender a shipment

Deprecated
POST
https://api.ltlp.kuehne-nagel.com/api/LoadTendering/LoadTender
Last modified:2024-11-07 14:06:38
Deprecated

Any new integrations must use the new version#

Request

Body Params application/json

Example
{
    "Credentials": {
        "Username": "string",
        "ClientCode": "string",
        "AuthenticationCode": "string"
    },
    "CarrierCode": "string",
    "ShipperCompany": "string",
    "ShipperAddress": "string",
    "ShipperCity": "string",
    "ShipperState": "string",
    "ShipperZip": "string",
    "ContactName": "string",
    "ContactPhone": "string",
    "ContactEmail": "string",
    "PickupDate": "string",
    "ReadyTimeHHMMSS": "string",
    "CloseTimeHHMMSS": "string",
    "DestinationCompany": "string",
    "DestinationAddress": "string",
    "DestinationCity": "string",
    "DestinationZip": "string",
    "DestinationState": "string",
    "DestinationPhone": "string",
    "DestinationContact": "string",
    "Quantity": 0,
    "Weight": 0,
    "DestinationPackageType": "string",
    "DeveloperMode": true,
    "Food": true,
    "Liftgate": true,
    "Hazerdous": true,
    "AccessorialServiceCodes": [
        "string"
    ],
    "BLReferenceNumber": 0,
    "BLPdf": "string",
    "Items": [
        {
            "ItemDescription": "string",
            "ItemQuantity": "string",
            "ItemWeight": "string",
            "FreightClass": "string",
            "NMFC": "string",
            "ItemLength": "string",
            "ItemWidth": "string",
            "ItemHeight": "string"
        }
    ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ltlp.kuehne-nagel.com/api/LoadTendering/LoadTender' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Credentials": {
        "Username": "string",
        "ClientCode": "string",
        "AuthenticationCode": "string"
    },
    "CarrierCode": "string",
    "ShipperCompany": "string",
    "ShipperAddress": "string",
    "ShipperCity": "string",
    "ShipperState": "string",
    "ShipperZip": "string",
    "ContactName": "string",
    "ContactPhone": "string",
    "ContactEmail": "string",
    "PickupDate": "string",
    "ReadyTimeHHMMSS": "string",
    "CloseTimeHHMMSS": "string",
    "DestinationCompany": "string",
    "DestinationAddress": "string",
    "DestinationCity": "string",
    "DestinationZip": "string",
    "DestinationState": "string",
    "DestinationPhone": "string",
    "DestinationContact": "string",
    "Quantity": 0,
    "Weight": 0,
    "DestinationPackageType": "string",
    "DeveloperMode": true,
    "Food": true,
    "Liftgate": true,
    "Hazerdous": true,
    "AccessorialServiceCodes": [
        "string"
    ],
    "BLReferenceNumber": 0,
    "BLPdf": "string",
    "Items": [
        {
            "ItemDescription": "string",
            "ItemQuantity": "string",
            "ItemWeight": "string",
            "FreightClass": "string",
            "NMFC": "string",
            "ItemLength": "string",
            "ItemWidth": "string",
            "ItemHeight": "string"
        }
    ]
}'

Responses

🟢200OK
application/json
O
Body

Example
{
    "ConfirmationID": "string",
    "Success": true,
    "Message": "string",
    "RTFPickupID": 0
}
Previous
TrackingDetails - Retrieve all the tracking details related to a shipment
Next
LoadTender - Tender a shipment
Built with