Order Status Query API 📊
Overview
This endpoint allows you to retrieve the current status of an order by specifying its unique identifier. 📜
Request Method & Path
- Method:
GET
- Path:
/API_Documentation/en/orders/query_order_status
Parameters
Name | Type | Description |
---|---|---|
order_id |
string | The ID of the order to query (required) |
Response Example
{
"status": "success",
"order_status": "Shipped",
"estimated_delivery_time": "2023-12-15T10:00:00Z"
}
Usage Tips
✅ Ensure the order_id
is valid and exists in our system.
❌ Avoid using special characters in the request parameters.
For more details on order management, visit our Order Management Documentation.