账号应用

GET account_apps

检索与指定广告账号关联的所有移动应用的详细信息。

资源 URL

https://ads-api.twitter.com/10/accounts/:account_id/account_apps

参数

名称 说明
account_id
必需

所使用账号的标识符。出现在资源路径中,通常是所有广告商 API 请求的必要参数,不包含 GET accounts。指定账号必须与已验证的用户关联。

类型:string

示例:18ce54d4x5t

count
可选
指定每个不同请求尝试检索的记录数量。

类型:int

默认值:200
最小值、最大值:11000
cursor
可选
指定光标以获取下一页结果。参阅分页了解更多信息。

类型:string

示例:8x7v00oow
sort_by
可选
根据支持的属性,按升序或降序排序。参阅排序了解更多信息。

类型:string

示例:created_at-asc
with_deleted
可选
在请求中包含已删除的结果。

类型:boolean

默认值:false
可能值:truefalse
with_total_count
optional
包含 total_count 响应属性。

注意:不包含此参数和 cursor

注意:包含 total_count 的请求速率限制较低,目前设置为每 15 分钟 200 次。

类型:boolean

默认值:false
可能值:truefalse

请求示例

GET https://ads-api.twitter.com/10/accounts/18ce54d4x5t/account_apps

响应示例

   {
     "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
      }
     ]
   }