批量获取创意信息
HTTP请求方式
POST
请求地址
https://api.e.360.cn/dianjing/creative/getInfoByIdList
字段 |
类型 |
必须 |
描述 |
apiKey |
String |
Yes |
注册时分配到的api key,该参数作为HTTP HEAD字段传递。 |
accessToken |
String |
Yes |
身份认证通过后平台分配的临时token,作为操作对应广告账户的凭证,10小时有效。参数获取方式见接口clientLogin |
Body 请求参数
字段 |
类型 |
必须 |
描述 |
idList |
String |
Yes |
JSON格式的创意ID数组 |
请求示例
curl -X POST \
--header 'apiKey:APIKEY' \
--header 'accessToken:ACCESSTOKEN' \
--data 'idList=[6790793322]' \
'https://api.e.360.cn/dianjing/creative/getInfoByIdList'
返回结果
{
"creativeList": [
{
"id": 6790793322,
"campaignId": 3924245063,
"groupId": 1810342237,
"title": "021801",
"description1": "test",
"description2": "",
"descSecondLine": "test",
"destinationUrl": "http://www.lou.com",
"displayUrl": "http://www.lou.com",
"mobileDestinationUrl": "http://www.lou.com",
"mobileDisplayUrl": "http://www.lou.com",
"optStatus": "enabled",
"status": "pending",
"cause": null,
"mobileStatus": "pass",
"updateTime": "2019-03-06 16:57:55",
"addTime": "2019-03-06 16:57:55",
"attribute": "common"
}
]
}
返回结果说明
字段 |
类型 |
描述 |
id |
string |
创意id |
campaignid |
string |
创意所在推广计划id |
groupid |
string |
创意所在推广组id |
title |
string |
创意标题 |
description1 |
string |
创意描述 |
description2 |
string |
创意描述的一部分,当广告在右侧展示时,该部分会被截断,以免广告过长影响展示效果。 |
descSecondLine |
string |
创意描述的第二行 |
destinationUrl |
string |
pc端创意访问url |
displayUrl |
string |
PC 端创意显示 url |
mobileDestinationUrl |
string |
移动端创意访问 url |
mobileDisplayUrl |
string |
移动端创意显示 url |
deeplinkUrl |
string |
基础创意应用调起网址 |
optStatus |
string |
创意启用/暂停状态,enabled/paused |
status |
string |
PC 端创意状态,pause/enable/pending/reject/delete |
mobileStatus |
string |
移动端创意状态,pending/pass/reject/ |
addTime |
string |
创意添加时间 |
updateTime |
string |
创意最近更新时间 |