Mode

The following code examples show the parameters required to set the mode of transportation in a Shipment API request:

Tip

The list of possible shipment modes may be obtained dynamically from the Shipwell Reference Data.

FTL

Copy
Copied
{
    "id": 1,
    "code": "FTL",
    "description": "Full Truckload"
}

LTL

Copy
Copied
{
  "id": 2,
  "code": "LTL",
  "description": "Less Than Truckload"
}

VLTL

Copy
Copied
{
  "id": 4,
  "code": "VLTL",
  "description": "Volume Less Than Truckload"
}

Drayage

Copy
Copied
{
  "id": 5,
  "code": "DRAYAGE",
  "description": "Drayage"
}

Parcel

Copy
Copied
{
  "id": 6,
  "code": "PARCEL",
  "description": "Parcel"
}

Intermodal

Copy
Copied
{
  "id": 7,
  "code": "INTERMODAL",
  "description": "Intermodal"
}

Rail

info

Opt-in transportation mode. Contact your account representative to enable this mode.

Copy
Copied
{
  "id": 8,
  "code": "RAIL_CAR",
  "description": "Rail"
}

Air

info

Opt-in transportation mode. Contact your account representative to enable this mode.

Copy
Copied
{
  "id": 9,
  "code": "AIR",
  "description": "Air"
}

Full Container Load

info

Opt-in transportation mode. Contact your account representative to enable this mode

Copy
Copied
{
  "id": 10,
  "code": "FCL",
  "description": "Full Container Load"
}

Less Than Container Load

info

Opt-in transportation mode. Contact your account representative to enable this mode.

Copy
Copied
{
  "id": 11,
  "code": "LCL",
  "description": "Less Than Container Load"
}
Copyright © Shipwell 2024. All right reserved.