Update Auto Targeting Match Type Bid Info

Update auto targeting match type bid information.

Resource URL

Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/autotargeting/matchtypeupdate?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 group
matchTypes matchType Yes Integer The type of match. Available values:

  • 2:  Near match
  • 3:  Loose match
  • 4:  Substitute
  • 5:  Complements
bid Yes Decimal Bid set by seller for the Auto Targeting match type  for this campaign ad group

Example: Json, Request

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

{
  "campaignNumber": 1207507,
  "groupNumber": 1207508,
  "matchTypes": [
    {
      "matchType": 2,
      "bid": 1.2
    }
  ]

Response Body

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

  • 037:  batch update match type bid success

Example: Json, Response

{
  "header": [
    {
      "msg": "batch update matchType bid success.",
      "bizCode": "037"
    }
  ]
}

Last updated: June 29, 2022