This endpoint allows developers to retrieve order details using the GET method. 📚

📌 Request Method

  • Method: GET
  • Path: /api/order-get
  • Parameters:
    • order_id (required): The unique identifier for the order.
    • language (optional): Specify response language (e.g., en for English, zh for Chinese).

🧾 Example Request

GET /en/developers/api-order-get?order_id=12345 HTTP/1.1
Host: api.example.com
Accept: application/json

📊 Example Response

{
  "order_id": "12345",
  "status": "completed",
  "items": [
    {
      "product_id": "67890",
      "quantity": 2,
      "price": 19.99
    }
  ],
  "total_amount": 39.98
}
API_Get_Request

For more details on order creation, visit our API Order Post documentation. 🚀