- Version 3
- Authentication
- Shipments
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Exports and Webhooks
GetTrackingByLoad
POST
/services/api/rest/GetTrackingByLoad
Request
Header Params
Content-Type
string
required
Example:
application/json
Accept
string
optional
Example:
application/json
Body Params application/json
AuthenticationData
object (Authentication Data)
required
Username
string
required
Password
string
required
ClientRefNum
string | null
optional
LoadIds
array[integer]
required
GetLastStatus
boolean
required
Example
{
"AuthenticationData": {
"Username": "",
"Password": "",
"ClientRefNum": ""
},
"LoadIds": [
"34255933",
"34256056",
"55555555"
],
"GetLastStatus": false
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://ws.integration.banyantechnology.com/services/api/rest/GetTrackingByLoad' \
--header 'Content-Type: application/json' \
--data-raw '{
"AuthenticationData": {
"Username": "",
"Password": "",
"ClientRefNum":""
},
"LoadIds":["34255933","34256056", "55555555"],
"GetLastStatus": false
}'
Responses
🟢200GetTrackingByLoad
application/json
Body
Tracking
array [object {4}]
required
LoadId
integer
required
BOL
string
required
ProNumber
string
required
TrackingStatuses
array [object {7}]
required
Errors
array[string]
required
Success
boolean
required
Example
{
"Tracking": [
{
"LoadId": 34255933,
"BOL": "2113600014",
"ProNumber": "507530921",
"TrackingStatuses": [
{
"DateTime": "2021-05-21T10:00:00",
"Type": "WEB",
"Code": "AA",
"CarrierMessage": "Pickup window 5/21/2021 10:00:00 AM - 5/21/2021 5:00:00 PM",
"BanyanMessage": "Pickup Appointment",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-21T16:34:00",
"Type": "WEB",
"Code": "SPU",
"CarrierMessage": "PICKED UP",
"BanyanMessage": "Shipment picked-up",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-22T01:37:00",
"Type": "WEB",
"Code": "P1",
"CarrierMessage": "DEPARTED TERMINAL",
"BanyanMessage": "Departed Terminal Location",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-22T04:14:00",
"Type": "WEB",
"Code": "X4",
"CarrierMessage": "ARRIVED AT TERMINAL",
"BanyanMessage": "Arrived at Terminal Location",
"City": "",
"State": ""
}
]
},
{
"LoadId": 34256056,
"BOL": "2113600017",
"ProNumber": "507530947",
"TrackingStatuses": [
{
"DateTime": "2021-05-21T10:00:00",
"Type": "WEB",
"Code": "AA",
"CarrierMessage": "Pickup window 5/21/2021 10:00:00 AM - 5/21/2021 5:00:00 PM",
"BanyanMessage": "Pickup Appointment",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-21T16:34:00",
"Type": "WEB",
"Code": "SPU",
"CarrierMessage": "PICKED UP",
"BanyanMessage": "Shipment picked-up",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-22T01:37:00",
"Type": "WEB",
"Code": "P1",
"CarrierMessage": "DEPARTED TERMINAL",
"BanyanMessage": "Departed Terminal Location",
"City": "",
"State": ""
},
{
"DateTime": "2021-05-22T04:14:00",
"Type": "WEB",
"Code": "X4",
"CarrierMessage": "ARRIVED AT TERMINAL",
"BanyanMessage": "Arrived at Terminal Location",
"City": "",
"State": ""
}
]
}
],
"Errors": [
"Load 55555555 does not exist for this user."
],
"Success": true
}
Modified at 2024-09-16 11:42:17