Kuehne + Nagel LTL+
  1. Load Tendering
Kuehne + Nagel LTL+
  • Overview
    • Introduction
    • Acceptable Use Policy
    • Getting Started
    • Full Integration API Workflow
    • Support & Feedback
  • Accessorials
    • Accessorial - Retrieve all accessorial charge codes
      GET
  • BillOfLading
    • BOL - Create a bill of lading PDF
      POST
  • Quoting
    • RateQuote - Submit a quote request
      POST
    • RateQuote - Submit a quote request for multiple points
      POST
  • Document Retrieval
    • GetImageList - Retrieve list of available shipment documents
      POST
    • GetImage - Retrieve shipping documents based on DocumentID
      POST
  • Invoice
    • Invoice - Retrieve a single invoice or pull an entire week of invoices
      POST
  • Shipment Tracking
    • HTML Tracking Link Generation
    • TrackingList - Get a list of shipment tracking information
      POST
    • TrackingDetails - Retrieve all the tracking details related to a shipment
      POST
  • Load Tendering
    • LoadTender - Tender a shipment
      POST
    • LoadTender - Tender a shipment
      POST
  • Transit
    • Transit - Receive transit time for a shipment lane.
      POST
  • Orders
    • Order
      POST
    • OrderDetails
      POST
  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