Get Order List
GET
/api/v2/public/order/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.omisell.com/api/v2/public/order/list?page=1&page_size=20&external_created_to=1704992399&external_created_from=1704906000&updated_from=1704906000&updated_to=1704992399&status_group=all&status=1&is_tax=false&is_active=1' \
--header 'Authorization;' \
--header 'Seller-ID;' \
--header 'Country;'
Response Response Example
{
"data": {
"count": 0,
"next": "string",
"previous": null,
"results": [
{
"order_number": "string",
"omisell_order_number": "string",
"status_id": 0,
"status_name": "string",
"created_time": 0,
"updated_time": 0
}
]
},
"error": true,
"error_code": 0,
"attr_error": null,
"messages": "string"
}
Request
Query Params
page
integer
required
Example:
1
page_size
integer
required
Example:
20
external_created_to
integer
optional
Example:
1704992399
external_created_from
integer
optional
Example:
1704906000
updated_from
integer
optional
Example:
1704906000
updated_to
integer
optional
Example:
1704992399
status_group
string
optional
Example:
all
status
string
optional
Example:
1
is_tax
string
optional
Example:
false
is_active
string
optional
Example:
1
Header Params
Content-Type
string
required
Default:
application/json
Authorization
string
required
Default:
Omi {{Token}}
Seller-ID
number
optional
Country
string
optional
Examples:
THVNPHIDMY
Responses
Modified at 2025-02-04 03:39:10