This section provides information about the orders API available for developers. You can use this API to manage and retrieve order information.

  • GET /orders: Retrieve a list of all orders.
  • POST /orders: Create a new order.
  • PUT /orders/{order_id}: Update an existing order.
  • DELETE /orders/{order_id}: Delete an order.

For more details on how to use these APIs, please refer to our Developer Documentation.

Usage Example

Here is an example of how you can use the GET /orders API:

fetch('/orders')
  .then(response => response.json())
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error('Error:', error);
  });

Image

Order Management