各個商品投放
搜索按特定商品編號篩選的投放列表。
相關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 | 廣告活動所在的國家/地區,只接受國際標準三位國家代碼 |
示例: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