Item Safeguard Setting Feed
Provides a price safeguard option for the seller to set up a rule to prevent wrong pricing action.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/datafeedmgmt/feeds/submitfeed?sellerid={sellerid}&requesttype={RequestType}
Neweggbusiness.com: https://api.newegg.com/marketplace/b2b/datafeedmgmt/feeds/submitfeed?sellerid={sellerid}&requesttype={RequestType}
Newegg.ca: https://api.newegg.com/marketplace/can/datafeedmgmt/feeds/submitfeed?sellerid={sellerid}&requesttype={RequestType}
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 |
| RequestType | Yes | Value: ITEM_SAFEGUARD_SETTING_DATA |
Resource Information
| HTTP Method | Authentication? | Request Formats | Response Formats | Rate Limited? |
| POST | Required | XML, Json | XML, Json | 1000 request per hour |
Note: Maximum Size of Request 10,000 records per file. Limit 30,000 records per hour.
Request Body
| Attribute | Required? | Format | Description |
| DocumentVersion | Yes | Decimal | Fixed value: 1.0 |
| MessageType | Yes | String | Fixed value: ItemSafeguardSetting |
| SellerPartNumber | Yes, if NeweggItemNumber not provided | String | The item’s seller part number. |
| NeweggItemNumber | Yes, if SellerPartNumber not provided | String | Newegg’s assigned number to item. |
| LowestSellingPrice | Yes | Decimal | The lowest allowable selling price of the item. |
| HighestSellingPrice | Yes | Decimal | The highest allowable selling price of the item. |
Schema: ItemSafeguardSetting.xsd
Example: XML, Request
POST https://api.newegg.com/marketplace/datafeedmgmt/feeds/submitfeed?sellerid={sellerid}&requesttype=ITEM_SAFEGUARD_SETTING_DATA
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/xml
Accept: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<NeweggEnvelope>
<Header>
<DocumentVersion>1.0</DocumentVersion>
<!--The identifier for the very of current feed; assigned by Newegg-->
</Header>
<MessageType>ItemSafeguardSetting</MessageType>
<Message>
<ItemSafeguard>
<Item>
<SellerPartNumber>a006-test-001</SellerPartNumber>
<!--A seller-defined unique identifier for an item. An alphanumeric string, max 40 characters including space-->
<NeweggItemNumber>9SIAWE50008504</NeweggItemNumber>
<!--Newegg’s unique identifier for an item-->
<LowestSellingPrice>23.00</LowestSellingPrice>
<HighestSellingPrice>26.00</HighestSellingPrice>
</Item>
</ItemSafeguard>
</Message>
</NeweggEnvelope>
Example: Json, Request
POST https://api.newegg.com/marketplace/datafeedmgmt/feeds/submitfeed?sellerid={sellerid}&requesttype=ITEM_SAFEGUARD_SETTING_DATA
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json
{
"NeweggEnvelope": {
"Header": {
"DocumentVersion": "1.0"
},
"MessageType": "ItemSafeguardSetting",
"Message": {
"ItemSafeguard": {
"Item": {
"SellerPartNumber": "a006-test-001",
"NeweggItemNumber": "9SIAWE50008504",
"LowestSellingPrice": "23.00",
"HighestSellingPrice": "26.00"
}
}
}
}
}
Response Body
| Attribute | Format | Description |
| IsSuccess | String | Get feed status operation:
True: Successful |
| OperationType | String | Fixed value: SubmitFeedResponse |
| SellerID | String | Your seller ID |
| RequestType | String | Value: ITEM_SAFEGUARD_SETTING_DATA |
| RequestDate | String | The date when the feed was submitted. (Pacific Standard Time) |
| RequestStatus | String | The status of the feed submission:
SUBMITTED |
| Memo | String | Additional Information |
Schema: SubmitFeedResponse.xsd
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?>
<NeweggAPIResponse>
<IsSuccess>true</IsSuccess>
<OperationType>SubmitFeedResponse</OperationType>
<SellerID>A006</SellerID>
<ResponseBody>
<ResponseList>
<ResponseInfo>
<RequestId>2291326430</RequestId>
<RequestType>ITEM_SAFEGUARD_SETTING_DATA</RequestType>
<RequestDate>2/16/2020 12:29:19</RequestDate>
<RequestStatus>SUBMITTED</RequestStatus>
</ResponseInfo>
</ResponseList>
</ResponseBody>
<Memo />
</NeweggAPIResponse>
Example: Json, Response
{
"IsSuccess": true,
"OperationType": "SubmitFeedResponse",
"ResponseBody": {
"ResponseList": [
{
"RequestDate": "2/22/2020 17:24:35",
"RequestId": "2PQCX3CMQ82MK",
"RequestStatus": "SUBMITTED",
"RequestType": "ITEM_SAFEGUARD_SETTING_DATA"
}
]
},
"SellerID": "A006"
}
Request Failure Errors
For common HTTP error responses, please refer to Failed Response Error Code List.
| Error Code | Description |
| DF003 | The MaxCount (maximum request records) CANNOT be over 30000. |
| DF004 | Unfortunately, we are unable to process your request at this time. We apologize for the inconvenience. Please try again later. |
| DF011 | Your data feed request will not be processed during the scheduled data feed processing restriction from [{begin timestamp: hh:mm:ss, MM/DD/YYYY}] to [{end timestamp: hh:mm:ss, MM/DD/YYYY}]). Please contact datafeeds@newegg.com if you have any question or concern. Thank you for your patience. |
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?>
<Errors>
<Error>
<Code>DF003</Code>
<Message>The MaxCount (maximum request records) CANNOT be over 30000</Message>
</Error>
</Errors>
Example: Json, Response
[
{
"Code": "DF003",
"Message": "The MaxCount (maximum request records) CANNOT be over 30000"
}
]
Last updated: August 31, 2020