Get order status Run in API Explorer
Ask AI
Retrieve detailed status information for a specific order including all warehouse orders and their current states.
GET
/v1/orders/status
curl \
--request GET 'https://api.pattern.com/hub/v1/orders/status?market_order_id=string' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"market_order_id": "string",
"order_status": "cancelled",
"sub_orders": [
{
"sub_order_status": "shipped",
"items": [
{
"sku": "string",
"quantity": 42
}
]
}
]
}