- Version 3
- Authentication
- Shipments
- Invoice
- Tracking
- StaticData
- Authentication
- Version 2
- Exports and Webhooks
Cancel a Load
POST
/services/api/rest/CancelLoad
This will only cancel the shipment in Banyan.
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
AuthenticationData
object (Authentication Data)
required
Username
string
required
Password
string
required
ClientRefNum
string | null
optional
LoadID
integer
required
Example
{
"AuthenticationData": {
"Username": "",
"Password": "",
"ClientRefNum": ""
},
"LoadID": ""
}
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/CancelLoad' \
--header 'Content-Type: application/json' \
--data-raw '{
"AuthenticationData":{
"Username":"",
"Password":"",
"ClientRefNum":""
},
"LoadID":""
}'
Responses
🟢200Success - OK
application/json
Body
LoadID
integer
optional
Success
boolean
optional
Error
optional
Any of
Message
string
required
Example
{
"LoadID": 12345678,
"Success": true,
"Error": null
}
🟠400Bad Request
Modified at 2024-09-16 11:42:17