Create and save a draft order of any type (Advanced Campaign, Ratings, Reviews, Keywords, Package, etc.). This operation is free.
Request
Body Params application/json
{
"order": {
"platform": 2,
"appId": "com.example.app",
"region": "US",
"submitType": "RATE",
"days": [],
"installType": "24h",
"rates": [
10,
20
],
"rateType": 100
},
"orderId": null
}
Request Code Samples
curl --location --request POST 'https://uat.asoworld.com/openApi/Order/save' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"order": {
"platform": 2,
"appId": "com.example.app",
"region": "US",
"submitType": "RATE",
"days": [],
"installType": "24h",
"rates": [
10,
20
],
"rateType": 100
},
"orderId": null
}'
Responses
{
"P": {
"id": "ORD123456"
}
}
Modified at 2026-02-04 07:15:27