GetTrackingStatuses
POST
/services/api/rest/GetTrackingStatusesThis function will return all the tracking statuses for all the clients under your web service user’s super user group. Tracking statuses can either be gathered by Banyan’s automated tracking process or EDI 214 process.
Each status will only be exported once. The carrier message returned in the response is directly from the carrier and is simply parsed by Banyan. Banyan does not make any adjustments to that message
Request
Header Params
Content-Type
string
required
Example:
application/json
Accept
string
optional
Example:
application/json
Body Params application/json
No schema defined
Example
{
"Username": "",
"Password": "",
"ClientRefNum": ""
}
Request samples
Responses
GetTrackingStatuses(200)
GetTrackingStatuses
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
ExampleGetTrackingStatuses
{
"TrackingStatuses": [
{
"LoadID": 12345678,
"BOL": "3000555567",
"ProNumber": "207000555",
"DateTime": null,
"Code": "T1",
"CarrierMessage": "En route to interim Bismarck, ND ",
"BanyanMessage": "In Transit",
"City": "Bismarck",
"State": "ND"
},
{
"LoadID": 87654321,
"BOL": "3000123456",
"ProNumber": "207555000",
"DateTime": null,
"Code": "T2",
"CarrierMessage": "En route to destination Lumberton, NC ",
"BanyanMessage": "En Route to Delivery Location",
"City": "Lumberton",
"State": "NC"
}
],
"Success": true,
"Error": null
}
Last modified: 2 months ago