Get Order by ID¶
Retrieve full details of a single order, including items, prebuilt pallets, and loose boxes.
Endpoint¶
GET {base url}/api/v1/orders/detailed-orders/<id>/
Authentication Requirements¶
Requires a valid API key. See API Authentication.
Path Parameters¶
|
Parameter |
Type |
Description |
|---|---|---|
|
|
Integer |
Order ID (required). |
Success Response (200 OK)¶
Returns the full order object including order_items, pre_builts, loose_boxes.
{
"id": 35,
"order_items": [...],
"pre_builts": [...],
"loose_boxes": [...],
"alpha_ref": "A9XBIF3V",
"reference": "REF-999",
"lane": 7,
"transportation_mode": 3,
"created_at": "2025-08-04T13:25:29.901127",
"updated_at": "2025-08-04T13:25:57.838396"
}
Key fields:
-
alpha_ref— ALPHA’s unique order reference (use for support and tracking) -
lane— Lane ID (numeric) -
transportation_mode— Transport mode ID (numeric; maps to Air, OceanFCL, etc.)
Error Responses¶
403 Forbidden — No permission to read this order.
404 Not Found — Order does not exist.