爱奇艺推广后台投放-广告-修改沙箱请求地址:
https://tuiguang.iqiyi.com/openapi/v1/sandbox/orderPlan/update
请求地址
https://tuiguang.iqiyi.com/openapi/v1/orderPlan/update
爱奇艺效果推广请求方法
POST
请求参数
advertiserId |
number |
广告主ID |
必填 |
orderPlanId |
number |
广告ID |
必填 |
orderPlanName |
string |
广告名称 |
必填 |
websiteUrl |
string |
网页地址 |
推广目标为网站(WEB),优化目标非转化时必填;推广目标为网站(WEB),优化目标为转化,且使用移动建站或电商落地页时必填 |
websiteAppName |
string |
网站推广内容 |
推广目标为网站(WEB)时必填 |
appleId |
string |
苹果ID |
推广目标为IOS APP(IOS),优化目标非转化时必填 |
iosAppName |
string |
苹果App名称 |
推广目标为IOS APP(IOS)时必填 |
apkUrl |
string |
apk安装地址 |
推广目标为Android APP(ANDROID)时,优化目标非转化时必填 |
androidApkName |
string |
Android包名 |
推广目标为Android APP(ANDROID)时,优化目标非转化时必填 |
androidAppName |
string |
Android App名称 |
推广目标为Android APP(ANDROID)时必填 |
androidAppDetailUrl |
string |
Android 详情页地址 |
推广目标为Android APP(ANDROID)时必填 |
optimizedType |
string |
优化目标 |
必填(见附录-枚举列表-优化目标) |
price |
float |
出价 |
优化目标非转化时必填(单位:元) |
conversionTargetPrice |
float |
转化出价 |
优化目标为转化时必填(单位:元) |
deepConversionTarget |
string |
深度转化目标 |
选填。若要设置深度转化,请填写深度转化目标,设置成功后不可修改(见附录-枚举列表-转化目标) |
deepConversionPrice |
float |
深度转化出价 |
选填。若要设置深度转化,请填写深度转化出价(单位:元) |
biddingStrategy |
string |
出价策略 |
优化目标为转化时必填(见附录-枚举列表-出价策略) |
creativeDisplayType |
string |
创意展现方式 |
优化目标为展示时必填(见附录-枚举列表-创意展示方式) |
adCategoryId |
number |
广告分类ID |
必填。只能填写子级分类ID(见工具-查询工具-广告分类查询) |
adTagList |
string[] |
广告标签 |
选填 |
targetList |
object[] |
定向列表 |
必填(见广告投放-广告-获取定向配置) |
request-id |
string |
请求日志id(相同接口,确保每次请求request-id值的唯一性)。 |
必填(此字段在HTTP的header中) |
返回参数
code |
number |
返回码,详见附录-返回码 |
|
message |
string |
返回信息,详见附录-返回码 |
|
data |
number |
广告ID |
爱奇艺信息流广告请求示例
curl请求示例
Java请求示例
curl -X POST \
https://tuiguang.iqiyi.com/openapi/v1/orderPlan/update \
-H 'content-type: application/json' \
-H 'access-token: XXXXX' \
-H 'request-id: xxxx' \
-d '{
"advertiserId": xxx,
"orderPlanId": xxx,
"websiteAppName": "xxApp",
"optimizedType": "IMPRESSION",
"price": 3,
"creativeDisplayType": "OPTIMIZE",
"orderPlanName": "testName",
"adCategoryId": xxx,
"targetList": [
{"id": 1, "isAnti": false, "content": [32, 33, 10000]},
{"id": 210, "isAnti": false, "content": [1, 3, 4, 2, 5]}
]
}'
爱奇艺信息流广告分成返回示例
{
"code": 0,
"message": "",
"data": 63000000390
}

评论列表