curl --request GET \
--url https://api.retailreadyai.com/api/v1/orders/{order_id} \
--header 'Authorization: Bearer <token>'
{
"message": "Order details retrieved successfully",
"data": {
"identifiers": {
"id": "944bf737-7860-4629-8933-d8e871f19d72",
"picksheet_code": "3132324301-9675",
"external_order_id": null,
"po_number": "3132324301",
"brand": {
"external_brand_code": "a6d6662a-53b0-4afe-9aaf-42441b0f490d"
},
"facility": {
"external_facility_code": "faba3d7a-c0f8-417b-9eab-4664baa02aaf"
},
"transportation_method": "PARCEL",
"carrier": "UPS",
"service_method": "ups_ground",
"parcel_account_number": "XYZ123",
"parcel_billing_type": "SENDER"
},
"status": "Packed",
"pallets": [
{
"id": "faba3d7a-c0f8-417b-9eab-4664baa02aaf",
"created_at": "2023-11-07T05:31:56Z",
"staged_by": "John Doe",
"staged_at": "2023-11-07T05:31:56Z",
"sscc": "00001234560000002822",
"status": "Loaded",
"cartonQuantity": 1,
"dim_unit": "in",
"height": 12,
"width": 12,
"length": 24,
"weight_unit": "lb",
"weight": 15,
"cartons": [
{
"id": "0eb578cd-c522-4ae0-8189-1419b58ddf96",
"sscc": "00001234560000002821",
"created_at": "2023-11-07T05:31:56Z",
"packed_by": "John Doe",
"packing_complete_at": "2023-11-07T05:31:56Z",
"parcel_tracking_number": "XYZ123000000000",
"dim_unit": "in",
"height": 10,
"width": 10,
"length": 20,
"weight_unit": "lb",
"weight": 14,
"skus": [
{
"sku": "123",
"upc": "456",
"serial_numbers": [
"123456789012345",
"987654321098765",
"456789012345678"
],
"quantity": 3
}
]
}
]
}
]
}
}
Get a breakdown of the pallets, cartons, and SKUs on an order
curl --request GET \
--url https://api.retailreadyai.com/api/v1/orders/{order_id} \
--header 'Authorization: Bearer <token>'
{
"message": "Order details retrieved successfully",
"data": {
"identifiers": {
"id": "944bf737-7860-4629-8933-d8e871f19d72",
"picksheet_code": "3132324301-9675",
"external_order_id": null,
"po_number": "3132324301",
"brand": {
"external_brand_code": "a6d6662a-53b0-4afe-9aaf-42441b0f490d"
},
"facility": {
"external_facility_code": "faba3d7a-c0f8-417b-9eab-4664baa02aaf"
},
"transportation_method": "PARCEL",
"carrier": "UPS",
"service_method": "ups_ground",
"parcel_account_number": "XYZ123",
"parcel_billing_type": "SENDER"
},
"status": "Packed",
"pallets": [
{
"id": "faba3d7a-c0f8-417b-9eab-4664baa02aaf",
"created_at": "2023-11-07T05:31:56Z",
"staged_by": "John Doe",
"staged_at": "2023-11-07T05:31:56Z",
"sscc": "00001234560000002822",
"status": "Loaded",
"cartonQuantity": 1,
"dim_unit": "in",
"height": 12,
"width": 12,
"length": 24,
"weight_unit": "lb",
"weight": 15,
"cartons": [
{
"id": "0eb578cd-c522-4ae0-8189-1419b58ddf96",
"sscc": "00001234560000002821",
"created_at": "2023-11-07T05:31:56Z",
"packed_by": "John Doe",
"packing_complete_at": "2023-11-07T05:31:56Z",
"parcel_tracking_number": "XYZ123000000000",
"dim_unit": "in",
"height": 10,
"width": 10,
"length": 20,
"weight_unit": "lb",
"weight": 14,
"skus": [
{
"sku": "123",
"upc": "456",
"serial_numbers": [
"123456789012345",
"987654321098765",
"456789012345678"
],
"quantity": 3
}
]
}
]
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier of the order
Order details retrieved successfully
The response is of type object
.