Get order list
GET
/v2/orders
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/orders' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
422 - Order 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
include
string
optional
Example:
sims,user,status
filter[created_at]
string
optional
Example:
Y-m-d - Y-m-d
filter[code]
string
optional
Example:
20221021-003188
filter[order_status]
string
optional
Example:
completed
filter[iccid]
string
optional
Example:
891000000000001868
filter[description]
string
optional
Example:
Your order description
limit
string
optional
Example:
50
page
string
optional
Example:
1
Header Params
Accept
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {{token}}
Body Params multipart/form-data
object {0}
Responses
Modified at 2024-12-17 16:53:02