名称 | 类型 | 描述 |
---|---|---|
account_id | integer | 广告主账号 id,直客账号或子客账号 |
adgroup_id | int64 | 广告组 id |
ad_id | int64 | 广告 id |
appeal_demand | string | 申诉复审需求。支持多选,多个申诉需求时以英文分号分割 |
appeal_reason | string | 申诉原因 |
history_approval_ad_id | integer | 历史已通过 ad_id |
appeal_result | string | 申诉结果 |
appeal_status | enum | 申诉状态。详见 AppealStatus 枚举类型,[枚举详情] |
description | string | 详细描述 |
image_list | string[] | 附件图片列表 |
curl --location --request POST '/v1.3/review_ad_appeal/get?access_token=<ACCESS_TOKEN>×tamp=<TIMESTAMP>&nonce=<NONCE>' \
--header 'access_token;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'fields;' \
--data-urlencode 'account_id=<ACCOUNT_ID>' \
--data-urlencode 'adgroup_id=<ADGROUP_ID>' \
--data-urlencode 'ad_id=<AD_ID>'
{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"account_id": "<ACCOUNT_ID>",
"adgroup_id": "<ADGROUP_ID>",
"ad_id": "<AD_ID>",
"image_list": []
}
}