[OPTIONAL] Equipment & ModeType
Adding Equipment/ModeType Details
Below are the equipment and mode details that can be added to a shipment:
Parameter | Type | Description |
---|---|---|
Equipment | The type of container carrying the shipment. | |
EquipmentSize | Integer | The length of the container. |
ModeType | The type of mode carrying the shipment. | |
TractorReferenceNumber | String | External reference to carrier tractor. If the associated reference does not already exist, one will be automatically generated. |
TrailerReferenceNumber | String | External reference to carrier trailer. If the associated reference does not already exist, one will be automatically generated. |
IsDropTrailer | Boolean | If there is a drop trailer associated with the load. |
AllowFerryRoutes | Boolean | True to allow routes with ferry use, false to not allow. Default is to allow. |
AllowBorderCrossing | Boolean | True to allow routes with border crossing, false to not allow. Default is to allow. |
AvoidTolls | Boolean | False to allow routes with tolls, true to not allow. Default is to allow. |
Here is an example of a temperature-detail rich JSON Object:
{
"FreightProviderReferenceNumber":"PHANTOM309",
"CarrierScac":"TEST",
"Stops":
[
{
"StopReference":"1",
"StopScheduledDatePart":"2018-08-11",
"StopSequence":1,
"StopType":1,
"Latitude":50.1234,
"Longitude":-45.1234
},
{
"StopReference":"2",
"StopScheduledDatePart":"2018-08-12",
"StopSequence":2,
"StopType":3,
"Latitude":50.4920,
"Longitude":-44.5543
}
],
"Equipment":7,
"EquipmentSize":32,
"ModeType":2,
"TractorReferenceNumber":188,
"TrailerReferenceNumber":9103,
"IsDropTrailer":1
}
Updated about 2 months ago