各个商品投放
搜索按特定商品编号筛选的投放列表。
相关URL
Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/individualsearch?sellerid={sellerid}
注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。
参数
名称 | 是否必填? | 描述 |
sellerid | 是 | 您在新蛋商城的商家编号 |
相关请求信息
HTTP方式 | 是否需要认证? | 请求格式 | 回复格式 | 频率限制 |
POST | 需要 | Json | Json | 1000 请求/小时 |
请求文件主体
属性 | 是否必填? | 格式 | 描述 |
type | 是 | Integer | 定位类型。有效值:
|
productType | 是 | Integer | 投放商品类型。有效值:
|
itemNumberList | 是 | String | 逗号分隔的商品编号列表。 |
countryCode | 否 | String | 广告活动所在的国家/地区,只接受国际标准3位国家编码 |
示例:Json,Request
POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/individualsearch?sellerid={sellerid} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "type": 0, "productType": 2, "itemNumberList": [ "9SIBBWRHWY7881" ], "countryCode": "USA" }
回复文件主体
属性 | 格式 | 描述 |
msg | String | 返回信息 |
bizCode | String | 有效值:
|
itemNumber | String | 新蛋商品编号 |
relatedPrimaryItem | String | 新蛋商品列表中的的主商品 |
priceSuggestBid | decimal | 产品的建议出价 |
priceLowerBound | decimal | 产品最低价格 |
priceHigherBound | decimal | 产品最高价格 |
totalRows | Integer | 返回结果总数量 |
示例:Json,Request
{ "header": [ { "msg": "Succeeded in obtaining recommended Individual data", "bizCode": "062" } ], "rows": [ { "itemNumber": "03O-09SJ-00002", "relatedPrimaryItem": "03O-09SJ-00002", "priceSuggestBid": 0.5, "priceLowerBound": 0.5, "priceHigherBound": 0.62 } ], "totalRows": 1 }
更新日期:06/29/2022