Change Auto Targeting Match Type Status

Change the match type status of auto targeting.

Resource URL

Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/autotargeting/matchtypechangestatus?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
activeStatus Yes ENUM The Campaign Status Description

  • Pending
  • Delivering
  • Processing
  • Out of budget
  • Inactive
  • Ended

Example: Json, Request

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

{
  "campaignNumber": 1193519,
  "groupNumber": 1193520,
  "matchTypes": [
    {
      "matchType": 3,
      "activeStatus": "Active"
    }
  ]

Response Body

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

  • 036: batch update matchType status success

Example: Json, Response

{
  "header": [
    {
      "msg": "batch update matchType status success",
      "bizCode": "036"
    }
  ]
}

Last updated: June 29, 2022