Get Returns Order List
GET
/api/v2/public/order/return/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.omisell.com/api/v2/public/order/return/list?page=1&page_size=20&external_created_to=1704992399&external_created_from=1704906000' \
--header 'Authorization: Omi {{Token}}' \
--header 'Authorization;' \
--header 'Seller-ID;' \
--header 'Country;'
Response Response Example
{
"data": {
"count": 0,
"next": "string",
"previous": null,
"results": [
{
"omisell_return_order_number": "string",
"return_order_number": "string",
"status_id": "string",
"status_name": "string",
"created_time": "string",
"updated_time": "string"
}
]
},
"error": true,
"error_code": 0,
"attr_error": null,
"messages": "string",
"request_id": "string"
}
Request
Query Params
page
string
optional
Example:
1
page_size
string
optional
Example:
20
external_created_to
string
optional
Example:
1704992399
external_created_from
string
optional
Example:
1704906000
Header Params
Authorization
string
required
Example:
Omi {{Token}}
Content-Type
string
required
Example:
application/json
Seller-ID
number
optional
Country
string
optional
Examples:
THVNPHIDMY
Responses
Modified at 2024-04-09 09:28:02