Product Targeting Individual
Search a list of targeting clauses filtered by specific item#.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/sponsoredmgmt/campaign/producttargeting/individualsearch?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:
|
| itemNumberList | Yes | String | List of comma separated Item#. 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/individualsearch?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json
{
"type": 0,
"productType": 2,
"itemNumberList": [
"9SIBBWRHWY7881"
],
"countryCode": "USA"
}
Response Body
|
Attribute
|
Format
|
Description
|
|---|---|---|
| msg | String | Return message |
| bizCode | String | Available values:
|
| itemNumber | String | Newegg Item# |
| relatedPrimaryItem | String | Primary product # of the Newegg Item# |
| priceSuggestBid | decimal | Suggested price bid of the product |
| priceLowerBound | decimal | The price minimum of the product |
| priceHigherBound | decimal | The price maximum of the product |
| totalRows | Integer | Total number of the result |
Example: Json, Response
{
"header": [
{
"msg": "Succeeded in obtaining recommended Individual data",
"bizCode": "062"
}
],
"rows": [
{
"itemNumber": "03O-09SJ-00002",
"relatedPrimaryItem": "03O-09SJ-00002",
"priceSuggestBid": 0.5,
"priceLowerBound": 0.5,
"priceHigherBound": 0.62
}
],
"totalRows": 1
}
Last updated: June 29, 2022