Get Order Statuses List
GET
/v1/orders/statuses
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/orders/statuses' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
422 - Order Status List (422)
{
"data": {
"limit": "The limit must be an integer.",
"page": "The page must be an integer."
},
"meta": {
"message": "the parameter is invalid"
}
}
Request
Query Params
filter[name]
string
optional
Example:
completed
limit
string
optional
Example:
100
page
string
optional
Example:
1
Header Params
Accept
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {{token}}
Responses
Modified at 2024-11-22 09:33:20