Register tracking with BOL
This endpoint has been deprecated and may be removed in future versions of the API.
Register a tracking request using a bill-of-lading number issued by the sealine.
Header Parameters
- Authorization string required
API Key that you create in your workspace developer settings
Example: 1AbC2DeFgH34IJKlm5N6O7p8QR9s0tU1VWcYZABcDeFg2HIJ
- application/json
Request Body required
The Load object with the bill of lading and array of containers.
Load object
steam_ship_line object
The steam ship line object with the bill of lading number.
master_bill_of_lading_number stringThe SeaLine issued bill of lading.
containers object[]
Possible values:
>= 1
The array of containers with your internal unique ids.
number stringSeaLine issued container number
unique_id stringAn internal unique id for the container. This is used for webhook events when listening on container events from Chaine.
- 200
- 422
A successful operation.
- application/json
- Example
{
"message": "Success message",
"statusCode": 200,
"name": "Success"
}
This error happens when a containter with the unique_id you provided is already registered. The Loads.containers.unique_id must be unique.
- application/json
- Example
{
"message": "Container with id 123 is already tracking",
"statusCode": 422,
"name": "Unprocessable Entity"
}