Untracking a Shipment
Unassigning Mobile Tracking on a Shipment
To POST a shipment's specific Untrack Object, you'll need to first provide the specific FreightProviderReferenceNumber with your 10-4 provided FreightHaulerProviderXID or the TenFourLicensePlate.
To POST a Untrack Object, the following fields are required:
1. FreightProviderReferenceNumber and FreightHaulerProviderXID
2. TenFourLicensePlate
Parameter | Type | Description |
---|---|---|
FreightProviderReferenceNumber | String | The external reference number of the shipper's given shipment (BOL). |
FreightHaulerProviderXID | String | 10-4's external reference id between a shipper and a carrier. |
TenFourLicensePlate | String | The uniquely generated 10-4 response when creating a shipment within Freight Portal. |
Here is an example JSON Object:
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI"
}
{
"TenFourLicensePlate":"T9302NB"
}
Adding the Carrier
Next, in order to assign a shipment to a specific carrier, you'll need to supply one of the following carrier identification parameters listed below:
Parameter | Type | Description |
---|---|---|
CarrierMC | String | The external reference to the carrier's MC-Number. |
CarrierDOT | String | The external reference to the carrier's USDOT-Number. |
CarrierSCAC | String | The external reference to the carrier's SCAC. |
Here is an example of the JSON Object thus far:
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI",
"CarrierMC":"3829182"
}
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI",
"CarrierDOT":"110392"
}
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI",
"CarrierSCAC":"ABCD"
}
Removing Tracking Data Parameters
To update a specific shipment's tracking information, the following additional fields are required:
Parameter | Type | Description |
---|---|---|
DriverPhoneNumber | String | Phone number of driver of shipment. |
ShipmentTrackingType | Enumeration type of the shipment's tracking type. |
Here is an example of the JSON Object thus far:
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI",
"DriverPhoneNumber":"3035550101",
"ShipmentTrackingType":1
}
Completed Untrack Shipment JSON Object
Here you can see an example of a completely valid Untrack Object:
{
"FreightProviderReferenceNumber":"12345670",
"FreightHaulerProviderXID":"ABD3820AI",
"DriverPhoneNumber":"3035550101",
"ShipmentTrackingType":1
}
Updated about 2 months ago