[GET] Retrieve an order#
Retrieves a single order by its numeric ID.
GET https://BASE_URL/api/v1/orders/detailed-orders/{id}/
Note
In the examples, BASE_URL is the base URL of your environment, for
example https://api.alphaaugmented.com. See Base URLs for the
complete list.
Requires Authentication.
Parameters#
|
Parameter |
Type |
Description |
|---|---|---|
|
|
integer |
Required. Path segment. |
Request#
curl https://BASE_URL/api/v1/orders/detailed-orders/35/ \
-H "Authorization: Api-Key YOUR_API_KEY"
Response#
200 OK with the fields below.
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Order ID. Use with [GET] Retrieve an order
( |
|
|
string |
Unique ALPHA identifier (for example |
|
|
string |
Your shipment reference from create. May be blank. Not guaranteed unique. Download and pallet lookups use the newest match when several orders share a reference. |
|
|
string |
Optional notes supplied when the order was created. |
|
|
string |
One of |
|
|
integer |
Lane ID. |
|
|
string |
Transportation mode (for example |
|
|
boolean |
Whether the packing instructions file was downloaded through this API. |
|
|
array |
Submitted SKUs (ALPHA palletizes these when present). |
|
|
array |
Submitted pre-built pallets. |
|
|
array |
Submitted loose boxes. |
|
|
string |
Creation time in ISO 8601 format. |
|
|
string |
Last update time in ISO 8601 format. |
order_items, pre_builts, and loose_boxes reflect what you
submitted at create time. For ALPHA-built pallets after optimization, use
[GET] Retrieve pallet contents.
Note
Responses use these names whichever form the request used —
shipment_skus, pallets and boxes are accepted on input only.
Nothing you already parse changes.
{
"id": 35,
"order_items": [],
"pre_builts": [],
"loose_boxes": [],
"alpha_ref": "ALPHA-ABC123",
"reference": "REF-999",
"customer_notes": null,
"shipment_type": "normal",
"lane": 7,
"transport_name": "Air",
"packing_instructions_downloaded": false,
"created_at": "2025-08-04T13:25:29.901127",
"updated_at": "2025-08-04T13:25:57.838396"
}
Errors#
|
HTTP status |
Description |
|---|---|
|
|
Missing or invalid API key |
|
|
Order exists but is outside API key scope |
|
|
Unknown order ID |
{ "detail": "Invalid API key." }
{ "detail": "You do not have permission to access this object." }
{ "detail": "Not found." }
See Troubleshooting if requests fail unexpectedly.