AppsSearchResponse
Apps search response envelope.
Declaration
object AppsSearchResponseProperties
| Name | Type | Description |
|---|---|---|
result Required | [AppInfo] | Array of apps matching the search criteria. See AppInfo. |
pagination | QueryPaginationResult | Pagination metadata for the current result page. See QueryPaginationResult. |
error | Error | Error details if the request failed. Absent on success. See Error. |
Discussion
The search apps endpoint returns AppsSearchResponse as the top-level envelope. It extends the standard QueryResponse envelope. To retrieve additional pages, use pagination.
Example
{
"result": [
{
"adamId": 123456789,
"appName": "AwayFinder",
"developerName": "AwayFinder Inc.",
"countryOrRegionCodes": [
"US",
"GB",
"CA",
"AU"
]
},
{
"adamId": 123456790,
"appName": "AwayFinder Pro",
"developerName": "AwayFinder Inc.",
"countryOrRegionCodes": [
"US"
]
}
],
"pagination": {
"totalCount": 2,
"offset": 0,
"pageSize": 2
}
}