This API allows users to inquire about their orders. Below is a brief guide on how to use it.
Endpoint
GET /API/Documentation/en/订单查询
Parameters
order_id
: The unique identifier of the order. Required.
Response
200 OK
: The order details are returned successfully.404 Not Found
: The order with the specified ID does not exist.
Example Request
GET /API/Documentation/en/订单查询?order_id=123456789
Example Response
{
"order_id": "123456789",
"order_date": "2023-01-01",
"status": "Shipped",
"items": [
{
"item_id": "789012",
"description": "Golden Retriever Toy",
"quantity": 1,
"price": 29.99
}
]
}
For more information about the API, please visit our API Documentation.
Golden Retriever