/order/save API endpoint.| SubmitType | API Value | Display Name |
|---|---|---|
| PACKAGE | "PACKAGE" | Package Installs |
| KEYWORD | "KEYWORD" | Keyword Installs |
| RATE | "RATE" | Ratings |
| REVIEW | "REVIEW" | Reviews |
| COMPOSITE | "COMPOSITE" | Advanced Campaign |
submitType parameter is provided, the system automatically sets it to COMPOSITEPACKAGE type: Only processes days parameter, ignores rates, contents, and other fieldsKEYWORD type: Only processes days parameter, ignores other exclusive fieldsRATE type: Only processes rates and rateType parametersREVIEW type: Only processes rateType, titles, and contents parameters{
"rates": [20, 20], // Daily rating quantity array
"rateType": 80 // Rating type: 80=5+4 stars, 100=all 5 stars, 60=all 3 stars
}{
"rateType": 80, // Rating type: 80=5+4 stars, 100=all 5 stars, 60=all 3 stars
"titles": [ // iOS review titles (iOS only, Google Play ignores this field)
["title1", "title2", "title3", "title4", "title5", "title6"],
["title7"]
],
"contents": [ // Review content (required field)
["content1", "content2", "content3", "content4", "content5", "content6"],
["content7"]
]
}titles field is only required for iOS applicationstitles field{
"days": [ // Days array, outer array represents days, inner array contains keywords and quantities for each day
[
{
"word": "PACKAGE", // PACKAGE type: only accepts "PACKAGE" keyword (direct installs)
"count": 40
},
{
"word": "PACKAGE",
"count": 40
}
],
[
{
"word": "PACKAGE",
"count": 50
}
]
]
}PACKAGE type only accepts "PACKAGE" keyword{
"days": [ // Days array, outer array represents days, inner array contains keywords and quantities for each day
[
{
"word": "your_keyword_here", // KEYWORD type: specific keywords (suggestion: do not add keywords that cannot find your app)
"count": 40
},
{
"word": "another_keyword",
"count": 30
}
],
[
{
"word": "mobile_game",
"count": 25
}
]
]
}KEYWORD type does not accept "PACKAGE" keyword, requires specific keywords{
"order": {
"submitType": "COMPOSITE", // Optional, defaults to "COMPOSITE"
"platform": 2, // Platform: 2=App Store iPhone
"appId": "835599320", // Application ID
"region": "US", // Country/region code
"installType": "24h", // Install speed type: '24h'=average within 24 hours, 'once'=immediate
// PACKAGE/KEYWORD parameters
"days": [...],
// RATE parameters
"rates": [20, 20],
"rateType": 80,
// REVIEW parameters (titles only required for iOS)
"titles": [...],
"contents": [...]
}
}{
"orderId": "order_id_here", // Specify order ID to enter edit mode
"order": {
// Order parameters same as above
}
}COMPOSITE type can achieve a combination of package installs, keyword promotion, ratings, and reviews in one order.submitType.submitType is not specified, the system defaults to COMPOSITE, which supports all parameters and provides maximum flexibility.installType parameter controls how the daily task volume is distributed over time to complete the installation tasks.| InstallType Value | Description | Example |
|---|---|---|
"24h" | Evenly distribute installs over 24 hours | If daily task is 48 installs: 2 installs per hour, completing within 24 hours |
"8h" | Evenly distribute installs over 8 hours | If daily task is 48 installs: 6 installs per hour, completing within 8 hours |
"once" | Execute all installs immediately at maximum speed | All installs are executed as quickly as possible without time distribution |
{
"installType": "24h"
// Daily task of 48 installs = 2 installs per hour over 24 hours
}{
"installType": "8h"
// Daily task of 48 installs = 6 installs per hour over 8 hours
}{
"installType": "once"
// All installs executed immediately at maximum speed
}| Parameter | Type | Description | Example |
|---|---|---|---|
platform | Integer | Target platform | 2 |
appId | String | Application ID or package name | "835599320" |
region | String | Country/region code (ISO 2-letter code) | "US" |
installType | String | Install speed distribution type | "24h" |
days - Array of daily installation tasksdays - Array of daily keyword installation tasksrates - Array of daily rating quantitiesrateType - Rating distribution typerateType - Rating distribution typecontents - Review content arraystitles - Review title arrays (iOS only, ignored by Google Play)