This is the documentation for the Order API endpoint at /en/api/order. This API is designed to handle order-related requests and operations.

Endpoints

  • GET /en/api/order: Retrieve a list of orders.

Usage

To retrieve orders, send a GET request to /en/api/order. The API will return a list of orders in JSON format.

Example Request

curl -X GET "https://example.com/en/api/order"

Example Response

[
  {
    "order_id": "12345",
    "customer_name": "John Doe",
    "order_date": "2023-01-01",
    "total_amount": 100.00
  },
  {
    "order_id": "67890",
    "customer_name": "Jane Smith",
    "order_date": "2023-01-02",
    "total_amount": 150.00
  }
]

More Information

For more information about the Order API, please visit our API Documentation.

Order Processing