Managing Orders
API Endpoints for Managing Orders
Overview
GET 'Get Order by ID'
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Path parameters
idinteger · int64Required
ID of the order
Responses
200
Order retrieved successfully
No content
401
Unauthorized
404
Order not found
500
Internal Server Error
get
/api/open-api/v1/orders/{id}No content
GET 'Fetch All Orders'
Authorizations
AuthorizationstringRequired
Enter token in format (Bearer <your_token>)
Query parameters
per_pageintegerOptionalExample:
Number of results per page
25pageintegerOptionalExample:
Number of page
2order_bystringOptionalExample:
Field to sort orders by
created_atorderstring · enumOptionalExample:
Sort order (asc or desc)
descPossible values: configurator_idintegerOptionalExample:
Filter orders by specific configurator ID
127start_datestring · dateOptionalExample:
Filter orders created after this date
2024-01-01end_datestring · dateOptionalExample:
Filter orders created before this date
2024-12-31Responses
200
Successful response
application/json
401
Unauthorized
500
Internal Server Error
get
/api/open-api/v1/ordersLast updated