📄️ Create Order
Create an order of products. Orders have to be confirmed before they are fully completed.
📄️ Confirm Order
Confirm an order after creation using the trx returned by the Create order endpoint. This endpoint will attempt to return an order with the status finished. If the order cannot be finished within 20-30 seconds, the endpoint will return an order with the status pending.
📄️ Resolve Order
Confirm an order after creation using the trx returned by the Create order endpoint. This endpoint will either return an order with the status finished or it will cancel the order if the order cannot be finished within 20-30 seconds.
📄️ Cancel Order
Canceling an order after creation using the trx returned by the Create order endpoint. Orders that have not being confirmed will be deleted and return HTTP status 204, while orders that have been confirmed will be canceled instead and return a (partial) order.
📄️ Find Order
Retrieve an order using the trx returned by the Create order endpoint. Orders that are deleted cannot be retrieved.
📄️ Find All Orders
Retrieve all orders of an entity. This endpoint has pagination options.