添加否定关键词

为现有广告组添加新的否定关键词。

相关URL

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

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

参数

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

相关请求信息

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

请求文件主体

属性 是否必填? 格式 描述
campaignNumber Integer 与否定关键词相关联的广告活动标识编号
groupNumber Integer 广告组标识编号
negativeKeywords keyword String 与搜索查询匹配的关键词文本
keywordType Enum 匹配类型。有效值:

  • 0:exact match 精准匹配
  • 6:phrase match 短语匹配
status Integer 否定关键词状态。有效值:

  • 0:Deactive
  • 1:Active

示例:Json,Request

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

{
  "campaignNumber": 1169354,
  "groupNumber": 1169355,
  "negativeKeywords": [
    {
      "keyword": "gaming laptop",
      "keywordType": 0,
      "status": 1
    }
  ]
}

回复文件主体

属性 格式 描述
biz code Integer 有效值:

  • 051:  否定关键词添加成功
msg String 返回信息

示例:Json,Request

{
  "header": [
    {
      "msg": "add negative keyword success",
      "bizCode": "051"
    }
  ]
}

更新日期:06/29/2022