[OPTIONAL] Additional Reference Numbers
Adding Additional Shipment Reference Numbers
In additional to the primary reference numbers on a shipment, we also allow users to add additional reference numbers to better fit their shipment needs. Below are the two required fields when adding this information:
Parameter | Type | Description |
---|---|---|
ReferenceNumberType | Integer | |
ReferenceNumberValue | String | The reference number for the set reference number type. |
Here is an example of a JSON Object with 2 additional reference numbers in use:
{
"FreightProviderReferenceNumber":"TESTREF",
"CarrierScac":"TEST",
"Stops":
[
{
"StopReference":"STOP1",
"StopScheduledDatePart":"2018-10-16",
"StopSequence":1,
"StopType":1,
"Latitude":25.6487281,
"Longitude":-100.4431813
},
{
"StopReference":"STOP2",
"StopScheduledDatePart":"2018-10-18",
"StopSequence":2,
"StopType":3,
"Latitude":19.39068,
"Longitude":-99.2836982,
"ReferenceNumbers" : [
{
"ReferenceNumberType" : "17",
"ReferenceNumberValue" : "11111111"
},
{
"ReferencenumberType" : "3",
"ReferenceNumberValue" : "2222222"
}
]
}
]
}
Updated about 2 months ago