Gets a list of orders. Currently, the following two types of orders are supported:'cart': Orders waiting to pay for products.
'toship': Orders waiting to pay for international shipping.
Request Code Samples
curl --location --request GET '/api/open/order/list?type=cart' \
--header 'version: {{shop_openapi_version}}' \
--header 'token: {{shop_openapi_token}}'
Responses
application/json {
"status": "0",
"message": "Operation successful.",
"data": {
"orderList": [
{
"orderno": "string",
"waybillno": "string",
"skuDetailList": [
{
"skuid": "string",
"qty": 0
}
]
}
]
}
}
Modified at 2025-12-12 00:10:40