類別投放
搜索按商品類別篩選的投放列表。
相關URL
Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/categoriessearch?sellerid={sellerid}
註:請確保您的請求URL全都是小寫(除Seller ID)並且不能包含任何空格或者分行符號。
參數
| 名稱 | 是否必填? | 描述 | 
| sellerid | 是 | 您在新蛋商城的商家編號 | 
相關請求資訊
| HTTP方式 | 是否需要認證? | 請求格式 | 回覆格式 | 頻率限制 | 
| POST | 需要 | Json | Json | 1000 請求/小時 | 
請求文件主體
| 屬性 | 是否必填? | 格式 | 描述 | 
| type | 是 | Integer | 定位類型。有效值:
  | 
| productType | 是 | Integer | 投放商品類型。有效值:
  | 
| categoryList | 是 | String | 逗號分隔的商品類別列表。 | 
| countryCode | 否 | String | 您廣告活動所在的國家/地區,只接受國際標準三位國家代碼 | 
示例:Json,Request
POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/categoriessearch?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json
{
  "type": 1,
  "productType": 2,
  "categoryList": [
    "3515",
    "10"
  ],
  "countryCode": null
}
回覆文件主體
| 屬性 | 格式 | 描述 | 
| bizCode | String | 有效值:
  | 
| msg | String | 返回資訊 | 
| priceLowerBound | decimal | 該類別的最低價格 | 
| priceHigherBound | decimal | 該類別的最高價格 | 
| priceSuggestBid | decimal | 該類別的建議出價 | 
| relatedSubCode | Integer | 類別編號 | 
| totalRows | Integer | 返回結果總數量 | 
示例:Json,Request
{
  "header": [
    {
      "msg": "Succeeded in obtaining recommended Categories data",
      "bizCode": "061"
    }
  ],
  "rows": [
    {
      "relatedSubCode": "3515",
      "priceSuggestBid": 0.5,
      "priceLowerBound": 0.5,
      "priceHigherBound": 0.85,
      "lastEditDate": "2022-06-16 01:26:47"
    },
    {
      "relatedSubCode": "10",
      "priceSuggestBid": 0.5,
      "priceLowerBound": 0.5,
      "priceHigherBound": 0.85,
      "lastEditDate": "2022-06-16 01:26:47"
    }
  ],
  "totalRows": 2
}
更新日期:06/29/2022