类别投放

搜索按商品类别筛选的投放列表。

相关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 定位类型。有效值:

  • 0:Recommend 推荐
  • 1:Search 搜索
productType Integer 投放商品类型。有效值:

  • 1:Product Targeting 商品投放
  • 2:Display On Site 新蛋平台投放
  • 3:Display Off Site 非新蛋平台投放
categoryList String 逗号分隔的商品类别列表。
countryCode String 您广告活动所在的国家/地区,只接受国际标准3位国家编码

示例: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 有效值:

  • 061:成功获得推荐的类别数据
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