获取元素申诉复审结果

所属权限 ads_management
请求地址 element_appeal_review/get
请求方法 GET

全局参数

全局参数是指每一个接口都需要使用到的参数。详情参考,代码案例参考

参数名称 参数类型
access_token 授权令牌,完成 OAuth 2.0 授权后获得,参考授权认证章节
timestamp

当前的时间戳,单位为秒,允许客户端请求最大时间误差为 300 秒。

MarketingAPI 所使用的时间戳,若无特殊说明,均为秒级时间戳

MarketingAPI 所使用的时区为 GMT+8,例如当时间戳为 1494840119 时,表示 2017-05-15 17:21:59

nonce 随机字串标识,不超过 32 个字符,由调用方自行生成,需保证全局唯一性

请求参数

标有*的参数为必填项

名称 类型 描述
account_id*
integer 广告主帐号 id,有操作权限的帐号 id,不支持代理商 id
dynamic_creative_id*
integer 广告创意 id
component_id*
integer 创意组件 id
element_id*
integer 元素 id
element_finger_print*
string 元素指纹
字段长度最小 0 字节,长度最大 128 字节

请求示例


curl -v -G 'https://api.e.qq.com/v3.0/element_appeal_review/get?access_token=<ACCESS_TOKEN>&timestamp=<TIMESTAMP>&nonce=<NONCE>' \
-d 'account_id=<ACCOUNT_ID>' 
					

应答字段

名称 类型 描述
account_id
integer 推广帐号 id,有操作权限的帐号 id,包括代理商和广告主帐号 id
dynamic_creative_id
integer 广告创意 id
component_id
integer 创意组件 id
element_id
integer 元素 id
element_type
enum 元素类型,[枚举详情]
element_value
string 元素值
element_finger_print
string 元素指纹
appeal_demand
string 申诉复审需求,支持多选,多个申诉需求时以英文分号分割
appeal_reason
string 申诉原因
history_approval_component_id
integer 历史已通过组件 id
appeal_result
string 申诉结果
appeal_status
enum 申诉状态,[枚举详情]
description
string 详细描述
image_list
string[] 附件图片列表
reply_image_url_list
string[] 申诉复审回复的图片地址列表

应答示例

{
    "code": 0,
    "message": "",
    "message_cn": "",
    "data": {
        "account_id": "<ACCOUNT_ID>",
        "image_list": [],
        "reply_image_url_list": []
    }
}

可视化调试工具