Skip to main content
POST
/
t
/
v1
/
load-tender
/
create
Create Truck Load Tender
curl --request POST \
  --url https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create \
  --header 'Carrier: <carrier>' \
  --header 'Content-Type: application/json' \
  --header 'x-arms-api-key: <api-key>' \
  --header 'x-arms-assume-user: <api-key>' \
  --data '
{
  "truck_load_tender": {
    "business_instructions": [
      {
        "description": "Purchase order reference number",
        "reference_identification": "WS-2026-04172",
        "reference_identification_qualifier": "PO"
      }
    ],
    "scac": "JBHT",
    "shipment_identification_number": "WS-2026-04172",
    "shipment_method_of_payment": "PREPAID",
    "shipment_parties": [
      {
        "id_code": "JBHT",
        "name": "J.B. Hunt",
        "party_type": "MOTOR_CARRIER"
      }
    ],
    "stop_off_details": [
      {
        "date_time_references": [
          {
            "date": "20260320",
            "date_qualifier": "EARLIEST_PICKUP_DATE"
          },
          {
            "date": "20260327",
            "date_qualifier": "LATEST_PICKUP_DATE"
          }
        ],
        "lading_descriptions": [
          {
            "lading_description": "Soda Ash",
            "lading_line_item_number": "1"
          }
        ],
        "party": {
          "address": [
            "1234 Soda Way"
          ],
          "city_name": "Green River",
          "name": "Pickup - Green River",
          "party_type": "SHIP_FROM",
          "postal_code": "82935",
          "state_or_province": "WY"
        },
        "stop_reason_code": "LOAD",
        "stop_sequence_number": 1
      },
      {
        "party": {
          "address": [
            "North 36th Street",
            "Troll Ave N"
          ],
          "city_name": "Seattle",
          "name": "Destination - Seattle",
          "party_type": "SHIP_TO",
          "postal_code": "98103",
          "state_or_province": "WA"
        },
        "stop_reason_code": "UNLOAD",
        "stop_sequence_number": 2
      }
    ],
    "total_weight": 44000,
    "total_weight_qualifier": "ACTUAL_NET_WEIGHT",
    "weight_unit_code": "POUNDS"
  }
}
'
import requests

url = "https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create"

payload = { "truck_load_tender": {
"business_instructions": [
{
"description": "Purchase order reference number",
"reference_identification": "WS-2026-04172",
"reference_identification_qualifier": "PO"
}
],
"scac": "JBHT",
"shipment_identification_number": "WS-2026-04172",
"shipment_method_of_payment": "PREPAID",
"shipment_parties": [
{
"id_code": "JBHT",
"name": "J.B. Hunt",
"party_type": "MOTOR_CARRIER"
}
],
"stop_off_details": [
{
"date_time_references": [
{
"date": "20260320",
"date_qualifier": "EARLIEST_PICKUP_DATE"
},
{
"date": "20260327",
"date_qualifier": "LATEST_PICKUP_DATE"
}
],
"lading_descriptions": [
{
"lading_description": "Soda Ash",
"lading_line_item_number": "1"
}
],
"party": {
"address": ["1234 Soda Way"],
"city_name": "Green River",
"name": "Pickup - Green River",
"party_type": "SHIP_FROM",
"postal_code": "82935",
"state_or_province": "WY"
},
"stop_reason_code": "LOAD",
"stop_sequence_number": 1
},
{
"party": {
"address": ["North 36th Street", "Troll Ave N"],
"city_name": "Seattle",
"name": "Destination - Seattle",
"party_type": "SHIP_TO",
"postal_code": "98103",
"state_or_province": "WA"
},
"stop_reason_code": "UNLOAD",
"stop_sequence_number": 2
}
],
"total_weight": 44000,
"total_weight_qualifier": "ACTUAL_NET_WEIGHT",
"weight_unit_code": "POUNDS"
} }
headers = {
"Carrier": "<carrier>",
"x-arms-api-key": "<api-key>",
"x-arms-assume-user": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {
Carrier: '<carrier>',
'x-arms-api-key': '<api-key>',
'x-arms-assume-user': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
truck_load_tender: {
business_instructions: [
{
description: 'Purchase order reference number',
reference_identification: 'WS-2026-04172',
reference_identification_qualifier: 'PO'
}
],
scac: 'JBHT',
shipment_identification_number: 'WS-2026-04172',
shipment_method_of_payment: 'PREPAID',
shipment_parties: [{id_code: 'JBHT', name: 'J.B. Hunt', party_type: 'MOTOR_CARRIER'}],
stop_off_details: [
{
date_time_references: [
{date: '20260320', date_qualifier: 'EARLIEST_PICKUP_DATE'},
{date: '20260327', date_qualifier: 'LATEST_PICKUP_DATE'}
],
lading_descriptions: [{lading_description: 'Soda Ash', lading_line_item_number: '1'}],
party: {
address: ['1234 Soda Way'],
city_name: 'Green River',
name: 'Pickup - Green River',
party_type: 'SHIP_FROM',
postal_code: '82935',
state_or_province: 'WY'
},
stop_reason_code: 'LOAD',
stop_sequence_number: 1
},
{
party: {
address: ['North 36th Street', 'Troll Ave N'],
city_name: 'Seattle',
name: 'Destination - Seattle',
party_type: 'SHIP_TO',
postal_code: '98103',
state_or_province: 'WA'
},
stop_reason_code: 'UNLOAD',
stop_sequence_number: 2
}
],
total_weight: 44000,
total_weight_qualifier: 'ACTUAL_NET_WEIGHT',
weight_unit_code: 'POUNDS'
}
})
};

fetch('https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'truck_load_tender' => [
'business_instructions' => [
[
'description' => 'Purchase order reference number',
'reference_identification' => 'WS-2026-04172',
'reference_identification_qualifier' => 'PO'
]
],
'scac' => 'JBHT',
'shipment_identification_number' => 'WS-2026-04172',
'shipment_method_of_payment' => 'PREPAID',
'shipment_parties' => [
[
'id_code' => 'JBHT',
'name' => 'J.B. Hunt',
'party_type' => 'MOTOR_CARRIER'
]
],
'stop_off_details' => [
[
'date_time_references' => [
[
'date' => '20260320',
'date_qualifier' => 'EARLIEST_PICKUP_DATE'
],
[
'date' => '20260327',
'date_qualifier' => 'LATEST_PICKUP_DATE'
]
],
'lading_descriptions' => [
[
'lading_description' => 'Soda Ash',
'lading_line_item_number' => '1'
]
],
'party' => [
'address' => [
'1234 Soda Way'
],
'city_name' => 'Green River',
'name' => 'Pickup - Green River',
'party_type' => 'SHIP_FROM',
'postal_code' => '82935',
'state_or_province' => 'WY'
],
'stop_reason_code' => 'LOAD',
'stop_sequence_number' => 1
],
[
'party' => [
'address' => [
'North 36th Street',
'Troll Ave N'
],
'city_name' => 'Seattle',
'name' => 'Destination - Seattle',
'party_type' => 'SHIP_TO',
'postal_code' => '98103',
'state_or_province' => 'WA'
],
'stop_reason_code' => 'UNLOAD',
'stop_sequence_number' => 2
]
],
'total_weight' => 44000,
'total_weight_qualifier' => 'ACTUAL_NET_WEIGHT',
'weight_unit_code' => 'POUNDS'
]
]),
CURLOPT_HTTPHEADER => [
"Carrier: <carrier>",
"Content-Type: application/json",
"x-arms-api-key: <api-key>",
"x-arms-assume-user: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create"

payload := strings.NewReader("{\n \"truck_load_tender\": {\n \"business_instructions\": [\n {\n \"description\": \"Purchase order reference number\",\n \"reference_identification\": \"WS-2026-04172\",\n \"reference_identification_qualifier\": \"PO\"\n }\n ],\n \"scac\": \"JBHT\",\n \"shipment_identification_number\": \"WS-2026-04172\",\n \"shipment_method_of_payment\": \"PREPAID\",\n \"shipment_parties\": [\n {\n \"id_code\": \"JBHT\",\n \"name\": \"J.B. Hunt\",\n \"party_type\": \"MOTOR_CARRIER\"\n }\n ],\n \"stop_off_details\": [\n {\n \"date_time_references\": [\n {\n \"date\": \"20260320\",\n \"date_qualifier\": \"EARLIEST_PICKUP_DATE\"\n },\n {\n \"date\": \"20260327\",\n \"date_qualifier\": \"LATEST_PICKUP_DATE\"\n }\n ],\n \"lading_descriptions\": [\n {\n \"lading_description\": \"Soda Ash\",\n \"lading_line_item_number\": \"1\"\n }\n ],\n \"party\": {\n \"address\": [\n \"1234 Soda Way\"\n ],\n \"city_name\": \"Green River\",\n \"name\": \"Pickup - Green River\",\n \"party_type\": \"SHIP_FROM\",\n \"postal_code\": \"82935\",\n \"state_or_province\": \"WY\"\n },\n \"stop_reason_code\": \"LOAD\",\n \"stop_sequence_number\": 1\n },\n {\n \"party\": {\n \"address\": [\n \"North 36th Street\",\n \"Troll Ave N\"\n ],\n \"city_name\": \"Seattle\",\n \"name\": \"Destination - Seattle\",\n \"party_type\": \"SHIP_TO\",\n \"postal_code\": \"98103\",\n \"state_or_province\": \"WA\"\n },\n \"stop_reason_code\": \"UNLOAD\",\n \"stop_sequence_number\": 2\n }\n ],\n \"total_weight\": 44000,\n \"total_weight_qualifier\": \"ACTUAL_NET_WEIGHT\",\n \"weight_unit_code\": \"POUNDS\"\n }\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Carrier", "<carrier>")
req.Header.Add("x-arms-api-key", "<api-key>")
req.Header.Add("x-arms-assume-user", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create")
.header("Carrier", "<carrier>")
.header("x-arms-api-key", "<api-key>")
.header("x-arms-assume-user", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"truck_load_tender\": {\n \"business_instructions\": [\n {\n \"description\": \"Purchase order reference number\",\n \"reference_identification\": \"WS-2026-04172\",\n \"reference_identification_qualifier\": \"PO\"\n }\n ],\n \"scac\": \"JBHT\",\n \"shipment_identification_number\": \"WS-2026-04172\",\n \"shipment_method_of_payment\": \"PREPAID\",\n \"shipment_parties\": [\n {\n \"id_code\": \"JBHT\",\n \"name\": \"J.B. Hunt\",\n \"party_type\": \"MOTOR_CARRIER\"\n }\n ],\n \"stop_off_details\": [\n {\n \"date_time_references\": [\n {\n \"date\": \"20260320\",\n \"date_qualifier\": \"EARLIEST_PICKUP_DATE\"\n },\n {\n \"date\": \"20260327\",\n \"date_qualifier\": \"LATEST_PICKUP_DATE\"\n }\n ],\n \"lading_descriptions\": [\n {\n \"lading_description\": \"Soda Ash\",\n \"lading_line_item_number\": \"1\"\n }\n ],\n \"party\": {\n \"address\": [\n \"1234 Soda Way\"\n ],\n \"city_name\": \"Green River\",\n \"name\": \"Pickup - Green River\",\n \"party_type\": \"SHIP_FROM\",\n \"postal_code\": \"82935\",\n \"state_or_province\": \"WY\"\n },\n \"stop_reason_code\": \"LOAD\",\n \"stop_sequence_number\": 1\n },\n {\n \"party\": {\n \"address\": [\n \"North 36th Street\",\n \"Troll Ave N\"\n ],\n \"city_name\": \"Seattle\",\n \"name\": \"Destination - Seattle\",\n \"party_type\": \"SHIP_TO\",\n \"postal_code\": \"98103\",\n \"state_or_province\": \"WA\"\n },\n \"stop_reason_code\": \"UNLOAD\",\n \"stop_sequence_number\": 2\n }\n ],\n \"total_weight\": 44000,\n \"total_weight_qualifier\": \"ACTUAL_NET_WEIGHT\",\n \"weight_unit_code\": \"POUNDS\"\n }\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api-lg-k.arms.cedarai.com/t/v1/load-tender/create")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Carrier"] = '<carrier>'
request["x-arms-api-key"] = '<api-key>'
request["x-arms-assume-user"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"truck_load_tender\": {\n \"business_instructions\": [\n {\n \"description\": \"Purchase order reference number\",\n \"reference_identification\": \"WS-2026-04172\",\n \"reference_identification_qualifier\": \"PO\"\n }\n ],\n \"scac\": \"JBHT\",\n \"shipment_identification_number\": \"WS-2026-04172\",\n \"shipment_method_of_payment\": \"PREPAID\",\n \"shipment_parties\": [\n {\n \"id_code\": \"JBHT\",\n \"name\": \"J.B. Hunt\",\n \"party_type\": \"MOTOR_CARRIER\"\n }\n ],\n \"stop_off_details\": [\n {\n \"date_time_references\": [\n {\n \"date\": \"20260320\",\n \"date_qualifier\": \"EARLIEST_PICKUP_DATE\"\n },\n {\n \"date\": \"20260327\",\n \"date_qualifier\": \"LATEST_PICKUP_DATE\"\n }\n ],\n \"lading_descriptions\": [\n {\n \"lading_description\": \"Soda Ash\",\n \"lading_line_item_number\": \"1\"\n }\n ],\n \"party\": {\n \"address\": [\n \"1234 Soda Way\"\n ],\n \"city_name\": \"Green River\",\n \"name\": \"Pickup - Green River\",\n \"party_type\": \"SHIP_FROM\",\n \"postal_code\": \"82935\",\n \"state_or_province\": \"WY\"\n },\n \"stop_reason_code\": \"LOAD\",\n \"stop_sequence_number\": 1\n },\n {\n \"party\": {\n \"address\": [\n \"North 36th Street\",\n \"Troll Ave N\"\n ],\n \"city_name\": \"Seattle\",\n \"name\": \"Destination - Seattle\",\n \"party_type\": \"SHIP_TO\",\n \"postal_code\": \"98103\",\n \"state_or_province\": \"WA\"\n },\n \"stop_reason_code\": \"UNLOAD\",\n \"stop_sequence_number\": 2\n }\n ],\n \"total_weight\": 44000,\n \"total_weight_qualifier\": \"ACTUAL_NET_WEIGHT\",\n \"weight_unit_code\": \"POUNDS\"\n }\n}"

response = http.request(request)
puts response.read_body
{
  "truck_load_tender": {
    "bol_handling_requirements": [
      {
        "special_handling_description": "<string>"
      }
    ],
    "business_instructions": [
      {
        "description": "<string>",
        "reference_identification": "<string>",
        "reference_identification_qualifier": "<string>"
      }
    ],
    "date_time_references": [
      {
        "date": "<string>",
        "time": "<string>",
        "time_code": "<string>",
        "time_qualifier": "<string>"
      }
    ],
    "equipment_details": [
      {
        "aar_car_type": "<string>",
        "carrier_code": "<string>",
        "chassis_initial": "<string>",
        "chassis_number": "<string>",
        "check_digit": 123,
        "description_code": "<string>",
        "dunnage": 123,
        "dunnage_measure": {
          "unit": "<string>",
          "value": 123
        },
        "equipment_initial": "<string>",
        "equipment_name": "<string>",
        "equipment_number": "<string>",
        "equipment_ordered": {
          "aar_car_type": "<string>",
          "cubic_capacity": 123,
          "height_inches": 123,
          "length_inches": 123,
          "weight_capacity": 123
        },
        "gross_weight_lbs": 123,
        "gross_weight_measure": {
          "unit": "<string>",
          "value": 123
        },
        "height_in": 123,
        "height_measure": {
          "unit": "<string>",
          "value": 123
        },
        "interchange_move_authorities": [
          {
            "carrier_code": "<string>",
            "movement_authority_code": "<string>",
            "reject_reason_code": "<string>",
            "state_tariff_application_code": "<string>",
            "terminal_tariff_application_code": "<string>"
          }
        ],
        "iso_container_code": "<string>",
        "length_in": 123,
        "length_measure": {
          "unit": "<string>",
          "value": 123
        },
        "net_weight_lbs": 123,
        "net_weight_measure": {
          "unit": "<string>",
          "value": 123
        },
        "ownership_code": "<string>",
        "owning_carrier_code": "<string>",
        "position": "<string>",
        "seal_numbers": [
          "<string>"
        ],
        "shipment_info": [
          {
            "description": "<string>",
            "extended_reference_info": [
              {
                "description": "<string>",
                "reference_id": "<string>",
                "reference_id_qualifier": "<string>",
                "reference_timestamp": "2023-11-07T05:31:56Z"
              }
            ],
            "line_items": [
              {
                "cbp_barcode_number": "<string>",
                "commodity_code": "<string>",
                "commodity_code_qualifier": "<string>",
                "commodity_description": "<string>",
                "currency_code": "<string>",
                "customs_shipment_value": 123,
                "destination_country_code": "<string>",
                "marks_and_numbers": "<string>",
                "origin_country_code": "<string>",
                "quantity": 123,
                "smallest_exterior_package_type": "<string>",
                "weight": 123,
                "weight_unit_code": "<string>"
              }
            ],
            "reference_id": "<string>",
            "reference_id_qualifier": "<string>"
          }
        ],
        "tare_qualifier_code": "<string>",
        "tare_weight_lbs": 123,
        "tare_weight_measure": {
          "unit": "<string>",
          "value": 123
        },
        "terminals": [
          {
            "location_identifier": "<string>",
            "location_qualifier": "<string>",
            "port_name": "<string>",
            "terminal_function_code": "<string>"
          }
        ],
        "weight_allowance": 123,
        "weight_allowance_measure": {
          "unit": "<string>",
          "value": 123
        },
        "weight_type": "WT_ACTUAL",
        "width_in": 123,
        "width_measure": {
          "unit": "<string>",
          "value": 123
        }
      }
    ],
    "interline_information": [
      {
        "routing_sequence_code": "<string>",
        "scac": "<string>",
        "state_or_province_code": "<string>",
        "transportation_method_type_code": "<string>"
      }
    ],
    "notes": [
      {
        "description": "<string>",
        "note_reference_code": "MUTUALLY_DEFINED"
      }
    ],
    "scac": "<string>",
    "shipment_identification_number": "<string>",
    "shipment_parties": [
      {
        "additional_names": [
          "<string>"
        ],
        "address": [
          "<string>"
        ],
        "administrative_contacts": [
          {
            "communication_numbers": [
              {
                "number": "<string>",
                "qualifier": "<string>"
              }
            ],
            "contact_function_code": "<string>",
            "contact_inquiry_reference": "<string>",
            "name": "<string>"
          }
        ],
        "billing_info": [
          {
            "carrier_codes": [
              "<string>"
            ],
            "destination": {
              "city_name": "<string>",
              "country_code": "<string>",
              "fsac": "<string>",
              "postal_code": "<string>",
              "splc": "<string>",
              "state_or_province": "<string>"
            },
            "origin": {
              "city_name": "<string>",
              "country_code": "<string>",
              "fsac": "<string>",
              "postal_code": "<string>",
              "splc": "<string>",
              "state_or_province": "<string>"
            }
          }
        ],
        "city_name": "<string>",
        "country_code": "<string>",
        "country_subdivision_code": "<string>",
        "entity_sub_identifier_code": "<string>",
        "entity_sub_identifier_relationship_code": "<string>",
        "id_code": "<string>",
        "location_identifier": "<string>",
        "location_qualifier": "<string>",
        "location_uuid": "<string>",
        "name": "<string>",
        "postal_code": "<string>",
        "reference_info": [
          {
            "description": "<string>",
            "reference_id": "<string>",
            "reference_id_qualifier": "<string>"
          }
        ],
        "state_or_province": "<string>"
      }
    ],
    "stop_off_details": [
      {
        "bol_handling_requirements": [
          {
            "special_handling_description": "<string>"
          }
        ],
        "date_time_references": [
          {
            "date": "<string>",
            "time": "<string>",
            "time_code": "<string>",
            "time_qualifier": "<string>"
          }
        ],
        "lading_descriptions": [
          {
            "commodity_code": "<string>",
            "commodity_code_qualifier": "<string>",
            "lading_description": "<string>",
            "lading_line_item_number": "<string>",
            "packaging_code": "<string>"
          }
        ],
        "party": {
          "additional_names": [
            "<string>"
          ],
          "address": [
            "<string>"
          ],
          "administrative_contacts": [
            {
              "communication_numbers": [
                {
                  "number": "<string>",
                  "qualifier": "<string>"
                }
              ],
              "contact_function_code": "<string>",
              "contact_inquiry_reference": "<string>",
              "name": "<string>"
            }
          ],
          "billing_info": [
            {
              "carrier_codes": [
                "<string>"
              ],
              "destination": {
                "city_name": "<string>",
                "country_code": "<string>",
                "fsac": "<string>",
                "postal_code": "<string>",
                "splc": "<string>",
                "state_or_province": "<string>"
              },
              "origin": {
                "city_name": "<string>",
                "country_code": "<string>",
                "fsac": "<string>",
                "postal_code": "<string>",
                "splc": "<string>",
                "state_or_province": "<string>"
              }
            }
          ],
          "city_name": "<string>",
          "country_code": "<string>",
          "country_subdivision_code": "<string>",
          "entity_sub_identifier_code": "<string>",
          "entity_sub_identifier_relationship_code": "<string>",
          "id_code": "<string>",
          "location_identifier": "<string>",
          "location_qualifier": "<string>",
          "location_uuid": "<string>",
          "name": "<string>",
          "postal_code": "<string>",
          "reference_info": [
            {
              "description": "<string>",
              "reference_id": "<string>",
              "reference_id_qualifier": "<string>"
            }
          ],
          "state_or_province": "<string>"
        },
        "shipment_weight_packaging_quantity_data": [
          {
            "lading_quantity": 123,
            "lading_quantity_2": 123,
            "weight": 123,
            "weight_2": 123,
            "weight_qualifier": "<string>",
            "weight_qualifier_2": "<string>"
          }
        ],
        "stop_sequence_number": 123,
        "weight": 123
      }
    ],
    "total_weight": 123,
    "truck_load_tender_id": "<string>"
  }
}
{
"code": 123,
"details": [
{
"@type": "<string>"
}
],
"message": "<string>"
}

Authorizations

x-arms-api-key
string
header
required
x-arms-assume-user
string
header
required

Headers

Carrier
string
required

Carrier ID

Body

application/json
truck_load_tender
object

Truck Load Tender.

Response

A successful response.

truck_load_tender
object

Truck Load Tender.