This API endpoint will allow you to get a list of bill of ladings for a particular manifest. Please check the payload specification to make sure the required attributes are part of the payload and the optional attributes respect the specifications.
| Code | Description |
|---|---|
| 400 | Bad Request. |
| 404 | Not Found. |
| 422 | Unprocessable Entity. |
| 500 | Internal Server Error. |
curl "https://app.octopi.co/api/v1/manifests/123/bill_of_ladings.json" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Token token=ADD TOKEN HERE"
{
"bill_of_ladings": [
{
"manifest": {
"client_identifier": "123"
},
"id": 697,
"number": "MSCU90400",
"remarks": "Test",
"weight": 0.0,
"volume_in_cubic_meters": null,
"goods_description": "Full",
"type_of_contract": null,
"destination_code": "",
"usage": "unknown",
"port_of_loading": {
"locode": "HTPAP"
},
"port_of_discharge": {
"locode": "USMIA"
},
"port_of_delivery": {
"locode": "USBOY"
},
"consignee": {
"name": "MLS Exports",
"address": null
},
"consignee_address": "",
"exporter": {
"name": "MLS Exports"
},
"exporter_address": "",
"shipping_marks": "",
"package_type": {
"code": "",
"description": null
}
}
]
}
| Param name | Description |
|---|---|
|
manifest_client_identifier required |
The same client_identifier provided on manifest creation. Validations:
|