否定關鍵字列表

搜索否定關鍵字資訊。

相關URL

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

註:請確保您的請求URL全都是小寫(除Seller ID)並且不能包含任何空格或者分行符號。

參數

名稱 是否必填? 描述
sellerid 您在新蛋商城的商家編號

相關請求資訊

HTTP方式 是否需要認證? 請求格式 回覆格式 頻率限制
POST 需要 Json Json 1000 請求/小時

請求文件主體

屬性 是否必填? 格式 描述
sellerId String 您在新蛋商城的商家編號
campaignNumber Integer 與否定關鍵字相關聯的廣告活動標識編號
groupNumber Integer 與否定關鍵字相關聯的廣告組標識編號
keyword String 結果限制為與指定文本完全匹配的否定關鍵字
searchKeywordType Enum 有效值:

  • NEGATIVE_NAME
  • NEGATIVE_NUM
Status Enum 有效值:

  • 0:Deactive
  • 1:Active
pageInfo pageIndex Integer 當前頁索引(預設為 1)
pageSize Integer 單頁中的記錄數(預設每頁20 條)
sortField String 排序欄位名稱,默認為InDate
sortType String 預設Desc,支援Desc、Asc兩種方式

示例:Json,Request

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

{
  "sellerId": "AMZW",
  "campaignNumber": 945425,
  "groupNumber": 945426,
  "keyword": null,
  "searchKeywordType": "NEGATIVE_NAME",
  "status": null,
  "pageInfo": {
    "pageIndex": 1,
    "pageSize": 20,
    "sortField": null,
    "sortType": null
  }
}

回覆文件主體

屬性 格式 描述
transactionNumber Integer 否定關鍵字的標識編號
keyword String 與搜索查詢匹配的文本
formatKeyword String 否定關鍵字的格式
keywordType Integer 否定關鍵字的類型。有效值:

  • 0:exact match 精確匹配
  • 6:phrase match 短語匹配
status String 否定關鍵字的狀態。有效值:

  • 0:Deactive
  • 1:Active
totalRows Integer 記錄總數

示例:Json,Request

{
  "header": [
    {
      "msg": "search negative keyword success",
      "bizCode": "055"
    }
  ],
  "rows": [
    {
      "transactionNumber": 1181962,
      "keyword": "logitech webcam",
      "formatKeyword": "logitech|webcam",
      "keywordType": 0,
      "status": 1
    },
    {
      "transactionNumber": 1181961,
      "keyword": "logitech webcam",
      "formatKeyword": "logitech|webcam",
      "keywordType": 6,
      "status": 1
    }
  ],
  "totalRows": 2
}

更新日期:06/29/2022