Update Keyword Info

Update keyword(s) bid information.

Resource URL

Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/keyword/update?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
groupNumber Yes Integer The identifier of the ad group
keywordList keyword Yes String The keyword text
activeStatus No String
bid Yes Decimal Bid associated with this keyword. Applicable to biddable match types only
matchType Yes Integer The type of match

Available values:

  • 0: Exact
  • 1: Broad
  • 6: Phrase

Example: Json, Request

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

{
  "campaignNumber": 1084023,
  "groupNumber": 1084024,
  "keywordList": [
    {
      "keyword": "msi 17 inch laptop",
      "activeStatus": null,
      "bid": 1.7,
      "matchType": 6
    }
  ]
}

Response Body

Attribute
Format
Description
msg String Return message
biz code Integer Available values:

  • 022:  batch update keyword info success
  • 008: campaign name already exists, update campaign name fail, repeated campaign::[ Campaign-XX]
  • 400: has parameter valid question, please check request

Example: Json, Response

{
  "header": [
    {
      "msg": "update keywords success",
      "bizCode": "022"
    }
  ]
}

Last updated: June 29, 2022