| Code | Description |
|---|---|
| 404 | Resource Not Found |
| 422 | Validation Error |
| 500 | Internal Server Error |
curl 'https://app.octopi.co/api/v1/voyages/VOYAGE_NUMBER/load_list' \
-X 'PUT' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token token=YOURTOKEN' \
-d '{
"shipping_line_voyage_numbers": {
"OCTO": "20251022",
"REMAKE": "20251022"
}
}'
{
"id": 7,
"voyage": {
"id": 42,
"name": "OCTORJ 20251022"
},
"tally": {
"id": 29,
"name": "OCTORJ 20251022 Loading"
},
"created_by": {
"name": "Demo User"
},
"shipping_line_voyage_numbers": {
"REMAKE": "20251022",
"OCTO": "20251022"
},
"created_at": "2025-10-22T08:16:11-04:00",
"updated_at": "2025-10-31T06:39:24-04:00"
}
| Param name | Description |
|---|---|
|
voyage_number required |
This must be a voyage number that exists in Octopi. Validations:
|
|
shipping_line_voyage_numbers required |
Hash of fixed keys. Keys(shipping line codes) cannot be changed; only values can be updated. Validations:
|