Orders
Create Order
POST/orders
This endpoint allows you to create an order related to your store directly from this endpoint.
:::caution[Alert]
When creating an order, you must sen...
List Orders
GET/orders
This endpoint allows you to list all orders related to your store.
::: tip[Tip]Also, the endpoint enables you to filter the orders using a set of opti...
Order Details
GET/orders/{order_id}
This endpoint allows you to return the details for a specific order by passing the order_id as a path parameter.
:::danger[Deprecation Notice]
The v...
Create Drafted Order
POST/orders/draft
This endpoint allows you to create an order in the Draft status.
`orders.read_write` - Orders Read & Write
Update Order
PUT/orders/{order_id}
This endpoint allows you to update a specific order by passing the order_id as a path parameter.
:::tip[Tip]
For a darfted order, you have no restri...
Duplicate Order
POST/orders/duplicate
This endpoint allows you to duplicate the details of a specific order
:::danger[Deprecation Notice]The variables, items.codes and items.files, are dep...
Order Actions
POST/orders/actions
This endpoint allows you to perform bulk actions on the orders related to the store.
:::tip[Tip] Find the actions that can be performed in the action_...