Add Product to Group
Add product(s) to an existing campaign group.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/product/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
|
---|---|---|---|
countryCode | Yes | String | country code |
currencyCode | Yes | String | currency Code |
campaignNumber | Yes | Integer | The campaign identifier |
groupNumber | Yes | Integer | The ad group identifier |
products | Yes | String | The Item# collection is associated with the product. Defined for seller accounts only
The minimum value is 1, and the maximum value is 10000. The items under the same group cannot be repeated |
Example: Json, Request
POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/product/add?sellerid={sellerid} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "countryCode": "USA", "currencyCode": "USD", "campaignNumber": 440998, "groupNumber": "440999", "products": [ "9SIAP16HH74364", "9SIAP16EKA4542" ] }
Response Body
Attribute
|
Format
|
Description
|
---|---|---|
msg | String | Return Message |
biz code | Integer | Available values
|
Example: Json, Response
{ "header": [ { "msg": "add product to group success", "bizCode": "017" } ] }
Last updated: June 29, 2022