OrdersΒΆ

You can use regular HTTP methods to communicate with the API about orders:

  • A GET request to /api/orders will return you a summary of your orders.
    See retrieving your orders for more information.
  • A GET request to /api/orders/{orderId} will give you the order information.
    See retrieving order information for more information.
  • A POST request to /api/orders will allow you to create a new order.
    See creating order for more information. See creating quote order for more information.
  • Sending a DELETE request to /api/orders/{orderId} allows you to cancel an existing order.
    See cancelling an order. for more information.