Add Negative Keyword 

Add new negative keyword to a campaign group.

Resource URL

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

Note: Please make sure your request URL is all in lower case (except for Seller ID) and cannot contain any blank spaces or line breaks.

Parameters

Name Required? Description
sellerid Yes Your seller ID on Newegg Marketplace

Resource Information

HTTP Method Authentication? Request Formats Response Formats Rate Limited?
POST Required Json Json 1000 request per hour

Request Body

Attribute Required? Format Description
campaignNumber Yes Integer The identifier of the campaign to which the campaign negative keyword is associated
groupNumber Yes Integer The identifier of the Ad group to the campaign
negativeKeywords keyword Yes String The text of the expression to match against a search query
keywordType Yes Enum The type of match. Available values:

  • 0:  exact match
  • 6:  phrase match
status Yes Integer The Status of negative keywords. Available values:

  • 0:  Deactive
  • 1:  Active

Example: 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
    }
  ]
}

Response Body

Attribute
Format
Description
biz code Integer Available values:

  • 051:  add negative keyword success
msg String Return Message

Example: Json, Response

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

Last updated: June 29, 2022