Filter your order information with pagination and filtering options. This operation is free.
Request
Body Params application/json
{
"page": 1,
"pageSize": 20,
"orderId": null,
"platform": null,
"installType": null,
"appId": null,
"region": null,
"state": 0,
"stime": null,
"etime": null,
"submitType": "PACKAGE"
}
Request Code Samples
curl --location --request POST 'https://uat.asoworld.com/openApi/Order/list' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 1,
"pageSize": 20,
"orderId": null,
"platform": null,
"installType": null,
"appId": null,
"region": null,
"state": 0,
"stime": null,
"etime": null,
"submitType": "PACKAGE"
}'
Responses
application/json
Successfully retrieved order list
{
"P": {
"count": 5,
"hasAutoKeywordOrder": 2,
"list": [
{
"_id": "ORD123456",
"appId": "com.example.app",
"userId": 9999999,
"state": 0,
"platform": 1,
"region": "US",
"origin": 1,
"submitType": "AUTO_KEYWORD",
"installType": "24h",
"isArchived": false,
"orderPrice": 2000,
"createTime": 1704096000000,
"startTime": -1,
"finishTime": -1,
"days": [
[
{
"word": "PACKAGE",
"count": 10,
"impressionRatio": 100,
"openAppRatio": 50
}
]
]
}
]
}
}
Modified at 2026-02-04 07:16:03