Get Shipment List
GET
/api/v2/public/shipment/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.omisell.com/api/v2/public/shipment/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": [
{
"order_number": "string",
"omisell_order_number": "string",
"created_time": 0,
"updated_time": 0,
"status_id": 0,
"status_name": "string",
"omisell_shipment_number": "string",
"wms_order_number": "string",
"courier_tracking_number": "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-03 07:33:28