AsoWorld Open Api
  1. Order
AsoWorld Open Api
  • REFERENCE
    • Make Your First API Request
    • API Usage Rules
  • COMMON PARAM
    • OpenAPI Authentication Guide
    • Platform And Region
    • Google Play Language Support
    • Order & SubmitType Reference
    • Transaction Types Reference
  • App
    • Add app
      POST
    • Delete app
      POST
    • My Apps
      POST
  • Order
    • Save order
      POST
    • Start a draft order
      POST
    • Batch save Auto-Suggestion draft orders
      POST
    • Batch start Auto-Suggestion draft orders
      POST
    • Pause an order
      POST
    • Resume an order
      POST
    • List your orders
      POST
    • Cancel an order
      POST
    • Delete draft order
      POST
    • Rating Calculator
      POST
  • Money
    • Get USD balance
      POST
    • Get transaction history
      POST
  • Keyword
    • Add keyword to app
      POST
    • My Keywords
      POST
    • Get keyword ranking information
      POST
    • Get keyword ranking history
      POST
    • Get recommended keywords
      POST
    • Query keyword install
      POST
  • AI
    • Generate reviews
  • Schemas
    • TransactionRequest
    • AddAppRequest
    • SaveOrderRequest
    • AddKeywordRequest
    • Platform
    • UsdBalanceResponse
    • DeleteAppRequest
    • OrderDetails
    • KeywordRankRequest
    • Region
    • TransactionItem
    • ListAppsRequest
    • DayInstallItem
    • KeywordRankHistoryRequest
    • OrderState
    • TransactionResponse
    • AppInfo
    • ReviewerInfo
    • RecommendKeywordRequest
    • InstallType
    • ErrorResponse
    • ListAppsResponse
    • StartOrderRequest
    • ListKeywordsRequest
    • SubmitType
    • SuccessResponse
    • BatchAutoSuggestionRequest
    • KeywordInstallRequest
    • AutoKeywordOrderDetails
    • MultilingualCountry
    • BatchStartRequest
    • KeywordRankInfo
    • AutoKeywordDayItem
    • OrderIdRequest
    • KeywordHistoryItem
    • ListOrdersRequest
    • RecommendedKeyword
    • GenerateReviewsRequest
    • KeywordInfo
    • RatingCalculatorRequest
    • KeywordInstallInfo
    • SaveOrderResponse
    • KeywordRankResponse
    • ListOrdersResponse
    • KeywordRankHistoryResponse
    • OrderInfo
    • RecommendKeywordResponse
    • BatchSaveOrderResponse
    • GenerateReviewsResponse
    • ListKeywordsResponse
    • RatingCalculatorResponse
    • KeywordInstallResponse
  1. Order

Batch save Auto-Suggestion draft orders

POST
https://asoworld.com/openApi/Order/batchSaveAutoSuggestionOrder
Batch save multiple Auto-Suggestion draft orders. This operation is free.

Request

Header Params

Body Params application/json

Example
{
    "param": {
        "submitType": "AUTO_KEYWORD",
        "orders": [
            {
                "platform": 2,
                "appId": "333903271",
                "region": "US",
                "days": [
                    [
                        {
                            "word": "game",
                            "count": 10,
                            "searchWord": "gam"
                        }
                    ]
                ],
                "installType": "24h",
                "origin": 0
            },
            {
                "platform": 2,
                "appId": "333903271",
                "region": "US",
                "days": [
                    [
                        {
                            "word": "puzzle",
                            "count": 10,
                            "searchWord": "puz"
                        },
                        {
                            "word": "gaming",
                            "count": 10,
                            "searchWord": "gam"
                        }
                    ]
                ],
                "installType": "24h",
                "origin": 0
            }
        ]
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://asoworld.com/openApi/Order/batchSaveAutoSuggestionOrder' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "param": {
        "submitType": "AUTO_KEYWORD",
        "orders": [
            {
                "platform": 2,
                "appId": "333903271",
                "region": "US",
                "days": [
                    [
                        {
                            "word": "game",
                            "count": 10,
                            "searchWord": "gam"
                        }
                    ]
                ],
                "installType": "24h",
                "origin": 0
            },
            {
                "platform": 2,
                "appId": "333903271",
                "region": "US",
                "days": [
                    [
                        {
                            "word": "puzzle",
                            "count": 10,
                            "searchWord": "puz"
                        },
                        {
                            "word": "gaming",
                            "count": 10,
                            "searchWord": "gam"
                        }
                    ]
                ],
                "installType": "24h",
                "origin": 0
            }
        ]
    }
}'

Responses

🟢200
application/json
Successfully batch saved orders
Body

Example
{
    "P": {
        "id": [
            "ORD123456",
            "ORD123457"
        ]
    }
}
🟠400
Previous
Start a draft order
Next
Batch start Auto-Suggestion draft orders
Built with