添加商品投放

为现有广告组添加新的商品投放。

相关URL

Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/add?sellerid={sellerid}

注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。

参数

名称 是否必填? 描述
sellerid 您在新蛋商城的商家编号

相关请求信息

HTTP方式 是否需要认证? 请求格式 回复格式 频率限制
POST 需要 Json Json 1000 请求/小时

请求文件主体

属性 是否必填? 格式 描述
campaignNumber Integer 与关键词相关联的广告活动标识编号
groupNumber Integer 与关键词相关联的广告组标识编号
relevantProducts relevantCode String 如果Type=0(商品),则返值为新蛋商品编号
如果Type=1(类别),则返值为新蛋商品的类别编号
subCategoryName String 如果Type=0(商品),则返值为null
如果Type=1(类别),则返值为新蛋商品的子类别名称
relevantProductNumber String 如果Type=0(商品),则返值为null
如果Type=1(类别),则返值为产品编号
type Integer 有效值:

  • 0:Product 商品
  • 1:Category 类别
currentBid Decimal 如果Type=0(商品),则返值为产品报价
如果Type=1(类别),则返值为null
categoryRefine 如果Type=0(商品),则返值为null
如果Type=1(类别),则返值如下
CategoryRefine brand_id String 产品品牌
low_price Decimal 价格范围 – 最低价格
high_price Decimal 价格范围 – 最高价格
review_low_ratings Integer Egg评级,最低默认为0
review_high_ratings Integer Egg评级,最高默认为5
status Integer 有效值:

  • 1:Paused
  • 2:Enabled
  • 3:Delete
  • 4:Arrears

示例:Json,Request

POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/add?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json

{
  "campaignNumber": 1158408,
  "groupNumber": 1158409,
  "relevantProducts": [
    {
      "relevantCode": "9SIAZG6GMJ7570",
      "subCategoryName": null,
      "relevantProductNumber": null,
      "type": 0,
      "currentBid": 0.52,
      "categoryRefine": null
    }
  ]
}

回复文件主体

属性 格式 描述
msg String 返回信息
biz code Integer 有效值:

  • 056:  创建商品投放成功

示例:Json,Request

{
  "header": [
    {
      "msg": "create product Targeting success",
      "bizCode": "056"
    }
  ]
}

更新日期:06/29/2022