Product Targeting Categories
Search a list of targeting clauses filtered by category.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/categoriessearch?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
Attitude
|
Required?
|
Format
|
Description
|
---|---|---|---|
type | Yes | Integer | The type of targeting Available values:
|
productType | Yes | Integer | Targeting product Type Available values:
|
categoryList | Yes | String | List of comma separated Categories#. Restricts results to targeting clauses with the specified |
countryCode | No | String | The country for your CampaignOnly the ISO standard 3-digit codes are accepted |
Example: Json, Request
POST https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/categoriessearch?sellerid={sellerid} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "type": 1, "productType": 2, "categoryList": [ "3515", "10" ], "countryCode": null }
Response Body
Attribute
|
Format
|
Description
|
---|---|---|
bizCode | String | Available values:
|
msg | String | Return message |
priceHigherBound | decimal | The price maximum of the category |
priceLowerBound | decimal | The price minimum of the category |
priceSuggestBid | decimal | Suggested price bid of the category |
relatedSubCode | Integer | The category # |
totalRows | Integer | Total number of the result |
Example: Json, Response
{ "header": [ { "msg": "Succeeded in obtaining recommended Categories data", "bizCode": "061" } ], "rows": [ { "relatedSubCode": "3515", "priceSuggestBid": 0.5, "priceLowerBound": 0.5, "priceHigherBound": 0.85, "lastEditDate": "2022-06-16 01:26:47" }, { "relatedSubCode": "10", "priceSuggestBid": 0.5, "priceLowerBound": 0.5, "priceHigherBound": 0.85, "lastEditDate": "2022-06-16 01:26:47" } ], "totalRows": 2 }
Last updated: June 29, 2022