Account Apps
GET account_apps¶
Retrieve details for all mobile apps that are associated with the specified ad account.
Resource URL¶
https://ads-api.x.com/12/accounts/:account_id/account_apps
Parameters¶
Name | Description |
---|---|
account_id required |
The identifier for the leveraged account. Appears within the resource's path and is generally a required parameter for all Advertiser API requests excluding GET accounts. The specified account must be associated with the authenticated user. Type: string Example:
|
count optional |
Specifies the number of records to try and retrieve per distinct
request. Type: int Default: 200 Min, Max: 1 , 1000 |
cursor optional |
Specifies a cursor to get the next page of results. See Pagination for more
information. Type: string Example: 8x7v00oow |
sort_by optional |
Sorts by supported attribute in ascending or descending order. See
Sorting for more
information. Type: string Example: created_at-asc |
with_deleted optional |
Include deleted results in your request. Type: boolean Default: false Possible values: true , false |
with_total_count optional |
Include the total_count response
attribute.Note: This parameter and cursor are exclusive.Note: Requests which include total_count will have lower rate
limits, currently set at 200 per 15 minutes.Type: boolean Default: false Possible values: true , false |
Example Request¶
GET https://ads-api.x.com/12/accounts/18ce54d4x5t/account_apps
Example Response¶
{
"request": {
"params": {
"account_ids": [
"18ce54d4x5t"
]
}
},
"next_cursor": null,
"data": [
{
"app_store_identifier": "com.twitter.android",
"conversion_tracking_enabled": false,
"deep_link_pattern": "twitter://",
"id": "4x",
"created_at": "2019-06-20T22:36:16Z",
"updated_at": "2021-10-19T20:05:29Z",
"os_type": "Android",
"deleted": false
}
]
}