| Code | Description |
|---|---|
| 404 | Resource Not Found |
| 422 | Validation Error |
| 500 | Internal Server Error |
curl 'https://app.octopi.co/api/v1/load_lists/LOAD_LIST_ID/load_list_items' \ -X 'GET' \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Token token=YOURTOKEN'
{
"load_list_items": [
{
"id": 105,
"shipping_line": {
"id": 1,
"name": "Octopi Shipping Company",
"code": "OCTO"
},
"container_type": "20DV",
"container_status": "Empty",
"container": null,
"loaded": false,
"loaded_at": null,
"overshipped": false,
"notes": "sample notes 1",
"created_at": "2025-12-08T07:12:27-05:00"
},
{
"id": 106,
"shipping_line": {
"id": 1,
"name": "Octopi Shipping Company",
"code": "OCTO"
},
"container_type": "20DV",
"container_status": "Empty",
"container": null,
"loaded": false,
"loaded_at": null,
"overshipped": false,
"notes": "sample notes 1",
"created_at": "2025-12-08T07:12:27-05:00"
}
]
}
| Param name | Description |
|---|---|
|
load_list_id required |
Octopi ID of the load list. Validations:
|