Get Order¶
Retrieve full details of a single order, including items, prebuilt pallets, and loose boxes.
Endpoint¶
Authentication Requirements¶
Requires a valid API key. See 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.
Each pre_builts / loose_boxes entry may include optional warehouse_location
and tag when set at submission time.
{
"id": 35,
"order_items": ["..."],
"pre_builts": ["..."],
"loose_boxes": ["..."],
"alpha_ref": "A9XBIF3V",
"reference": "REF-999",
"load_plan_reference": "LP-2025-001",
"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) -
load_plan_reference— Optional load plan reference. -
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.