3.查询(包括审核状态)
接口:adcreative/list
注意:
系统同步有延迟,素材审核状态通过界面查询与API同步可能不同,敬请谅解。必须API同步到审核通过的素材,才可用于投放。
请求字段:
名称 | 类型 | 描述 |
---|---|---|
data | 数组类型 | 最多10个 |
data内容详细:
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
dsp_order_id | string | Y | 广告创意素材id,dsp需保证该id在dsp测的唯一性 |
接口返回:
名称 | 类型 | 描述 |
---|---|---|
ret_code | int | 返回码 |
ret_msg | 数组类型 | 返回内容 |
error_code | int | 错误补充码 |
ret_msg内容详细:
名称 | 类型 | 描述 |
---|---|---|
dsp_order_id | string | 同新增/修改 |
advertiser_id | int | 同新增/修改 |
advertiser_name | string | 同新增/修改 |
display_id | int | 同新增/修改 |
is_only_pd | int | 同新增/修改 |
targeting_url | string | 同新增/修改 |
monitor_url | 数组类型 | 同新增/修改 |
monitor_position | 数组类型 | 同新增/修改 |
monitor_settle_bill | 数组类型 | 同新增/修改 |
click_monitor_url | 数组类型 | 同新增/修改 |
status | int | 审核状态(1:审核通过 2:审核未通过,3:待审核) |
ott_black_channel | 数组类型 | ott素材审核未通过的牌照方id: 1. 其中443和1016为默认拒审ID,可以忽略; 2.如出现其他id,该牌照方流量将出现368告警,请修改素材后重新送审 |
vinfo | string | 审核意见 |
ad_content | 数组类型 | 同新增/修改 |
ad_ext | 对象类型 | 高级扩展参数。详见下面请求示例 |
ad_content内容详细:
名称 | 类型 | 描述 |
---|---|---|
file_text | string | 同新增/修改 |
file_url | string | 同新增/修改 |
file_md5 | string | 同新增/修改 |
ad_ext内容详细:
名称 | 类型 | 描述 |
---|---|---|
app_info | 对象类型 | app下载唤起特性 |
app_info内容详细 :
名称 | 类型 | 描述 |
---|---|---|
product_type | int | 枚举说明: 1-普通链接(默认) 2-android应用下载 3-ios应用下载 |
app_id | int | 下载类的app id |
deep_link | string | 应用直达URL |
请求示例:
{
"data":[
{
"dsp_order_id":"6001"
}
]
}
返回示例:
{
"ret_code":0,
"ret_msg":[
{
"dsp_order_id":"6001",
"advertiser_id":100,
"display_id":10389,
"is_only_pd":1,
"targeting_url":"http://xinwen.qq.com/adtargetpage?a=1",
"monitor_url":[
"http://monitor.qq.com/monitor1",
"http://monitor.qq.com/monitor2"
],
"monitor_position":[
2,
5
],
"monitor_settle_bill":[
1,
0
],
"click_monitor_url":[
"http://click.qq.com/click1"
],
"visible_monitor_url":[
"http://visible.qq.com/cgi?compaign="
],
"status":1,
"vinfo":"",
"ad_content":[
{
"file_text":"广告标题 new"
},
{
"file_url":"http://cdn.qq.com/pic640x246.jpg"
},
{
"file_url":"http://cdn.qq.com/pic114x114.jpg"
},
{
"file_text":"摘要 new"
},
{
"file_text":"广告主名称 new"
}
],
"ad_ext":{
"app_info":{
"product_type": 3,
"app_id": 989673964
}
}
}
]
}