批量修改广告主日限额
所属权限 | ads_management |
请求地址 | advertiser/update_daily_budget |
请求方法 | POST |
Content-Type | application/json |
全局参数
全局参数是指每一个接口都需要使用到的参数。详情参考,代码案例参考。
参数名称 | 参数类型 |
---|---|
access_token | 授权令牌,完成 OAuth 2.0 授权后获得,参考授权认证章节 |
timestamp |
当前的时间戳,单位为秒,允许客户端请求最大时间误差为 300 秒。 MarketingAPI 所使用的时间戳,若无特殊说明,均为秒级时间戳 MarketingAPI 所使用的时区为 GMT+8,例如当时间戳为 1494840119 时,表示 2017-05-15 17:21:59 |
nonce | 随机字串标识,不超过 32 个字符,由调用方自行生成,需保证全局唯一性 |
请求参数
标有*的参数为必填项
名称 | 类型 | 描述 |
---|---|---|
update_daily_budget_spec*
|
struct[] | 返回信息列表 数组最大长度 100 |
account_id*
|
integer | 广告主帐号 id,有操作权限的帐号 id,不支持代理商 id |
daily_budget*
|
integer | 广告账户日预算,单位为分,设置为 0 表示不设预算(即不限)。 日预算需介于 5,000 分-4,000,000,000 分之间(50 元-40,000,000 元,单位为人民币); 修改后的日预算不能低于广告帐号今日已消耗金额加上 5,000 分(50 元,单位为人民币); 每次修改幅度不能低于 5,000 分(50 元,单位为人民币); 允许从不限预算(0)修改为指定预算,以及从指定日预算修改为不限预算(0) |
使用说明
- 返回结果的顺序和 update_daily_budget_spec 中的参数顺序是一致的。
- update_daily_budget_spec 中 account_id 不允许重复。
请求示例
curl 'https://api.e.qq.com/v3.0/advertiser/update_daily_budget?access_token=<ACCESS_TOKEN>×tamp=<TIMESTAMP>&nonce=<NONCE>' \
-H 'Content-Type: application/json' \
-d '{
"update_daily_budget_spec": [
{
"account_id": 111111,
"daily_budget": 1000000
},
{
"account_id": 222222,
"daily_budget": 5000000
}
]
}'
应答字段
名称 | 类型 | 描述 |
---|---|---|
list
|
struct[] | 返回信息列表 |
code
|
integer | 返回码 |
message
|
string | 英文返回消息 |
message_cn
|
string | 中文返回消息 |
account_id
|
integer | 广告主帐号 id,有操作权限的帐号 id,不支持代理商 id |
fail_id_list
|
integer[] | 失败的 id 集合 |
应答示例
{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"code": 0,
"message": "",
"message_cn": "",
"account_id": "<ACCOUNT_ID>"
}
],
"fail_id_list": []
}
}
可视化调试工具
问题仍未解决?
请前往腾讯广告反馈中心在线提交问题,我们的人工客服将为你服务