This endpoint allows you to retrieve a list of possible order statuses from the Airalo Partners API. You can customize the results using filters and adjust pagination settings.The access token, obtained from the "Request Access Token" endpoint, should be included in the request.
Request
Query Params
filter[name]
string
optional
Optional. A string to filter order statuses by their name. This performs a like search using the format '%name%'.
Example:
completed
limit
string
optional
Optional. An integer specifying how many order statuses will be returned on each page.
Example:
100
page
string
optional
Optional. An integer specifying the pagination's current page.
Example:
1
Header Params
Accept
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {{token}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET '/v1/orders/statuses' \
--header'Accept: application/json' \
--header'Authorization: Bearer {{token}}'
Responses
🟠422Order Status List (422)
application/json
Body
data
object
required
limit
string
required
page
string
required
meta
object
required
message
string
required
Example
{"data":{"limit":"The limit must be an integer.","page":"The page must be an integer."},"meta":{"message":"the parameter is invalid"}}