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
LoadTendering
Last modified:2024-11-07 14:06:38
Deprecated

Any new integrations must use the new version#

Request

Body Params application/json
Credentials
object 
optional
Username
string 
optional
ClientCode
string 
optional
AuthenticationCode
string 
optional
CarrierCode
string 
optional
ShipperCompany
string 
optional
ShipperAddress
string 
optional
ShipperCity
string 
optional
ShipperState
string 
optional
ShipperZip
string 
optional
ContactName
string 
optional
ContactPhone
string 
optional
ContactEmail
string 
optional
PickupDate
string 
optional
ReadyTimeHHMMSS
string 
optional
CloseTimeHHMMSS
string 
optional
DestinationCompany
string 
optional
DestinationAddress
string 
optional
DestinationCity
string 
optional
DestinationZip
string 
optional
DestinationState
string 
optional
DestinationPhone
string 
optional
DestinationContact
string 
optional
Quantity
integer 
optional
Weight
integer 
optional
DestinationPackageType
string 
optional
DeveloperMode
boolean 
optional
Food
boolean 
optional
Liftgate
boolean 
optional
Hazerdous
boolean 
optional
AccessorialServiceCodes
array[string]
optional
BLReferenceNumber
integer 
optional
BLPdf
string 
optional
Items
array [object {8}] 
optional
ItemDescription
string 
optional
ItemQuantity
string 
optional
ItemWeight
string 
optional
FreightClass
string 
optional
NMFC
string 
optional
ItemLength
string 
optional
ItemWidth
string 
optional
ItemHeight
string 
optional
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
ConfirmationID
string 
optional
Success
boolean 
optional
Message
string 
optional
RTFPickupID
integer 
optional
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