Seller Status Check
Get the seller account status. Additional for Newegg.com, it includes the seller’s warehouse location and shipping destination information.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/sellermgmt/seller/accountstatus?sellerid={sellerid}&version={version} Neweggbusiness.com: https://api.newegg.com/marketplace/b2b/sellermgmt/seller/accountstatus?sellerid={sellerid} Newegg.ca: https://api.newegg.com/marketplace/can/sellermgmt/seller/accountstatus?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 |
version | Yes | Newegg.com available version: 307
Response for seller Membership Level information, Warehouse Location, Shipping to Country. |
Resource Information
HTTP Method | Authentication? | Request Formats | Response Formats | Rate Limited? |
GET | Required | XML, Json | XML, Json | 500 request per hour |
Request Body
Example: XML, Request
GET https://api.newegg.com/marketplace/sellermgmt/seller/accountstatus?sellerid={sellerid} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/xml Accept: application/xml
Example: Json, Request
GET https://api.newegg.com/marketplace/sellermgmt/seller/accountstatus?sellerid={sellerid} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json
Response Body
Attribute | Format | Description |
IsSuccess | String | Get feed status operation:
True: Successful |
OperationType | String | Fixed value: GetSellerAccountStatusResponse |
SellerID | String | Your seller ID |
SellerName | String | Your seller store name |
Status | String | The seller account’s status Available values:Active Suspended InActive Terminated Closed |
Membership | Integer | Membership level code:
0: Non-Elite Available version: 307 |
WarehouseLocation | String | The ISO standard 3-digit codes of the country where your warehouse is located. Please download the following to review details:
Available version: 307 |
WarehouseType | Integer | The order type what the warehouse will ship for:
0: SBS(Ship by seller) Available version: 307 |
ShipToCountry | String | The target country where the fulfillment center will ship the order to. Only the ISO standard 3-digit codes are accepted. To review the complete list of available values, please download the following:
Available version: 307 |
Schema: GetSellerAccountStatusResponse.xsd
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?> <NeweggAPIResponse> <IsSuccess>true</IsSuccess> <OperationType>GetSellerAccountStatusResponse</OperationType> <SellerID>A006</SellerID> <ResponseBody> <SellerName> <![CDATA[Test_MKTPLS]]> </SellerName> <Status>Active</Status> <Membership>0</Membership> <FufillmentCenterList> <FufillmentCenter> <WarehouseLocation>TUR</WarehouseLocation> <WarehouseType>0</WarehouseType> <ShippingDestinationList> <ShipToCountry>TUR</ShipToCountry> <ShipToCountry>USA</ShipToCountry> </ShippingDestinationList> </FufillmentCenter> <FufillmentCenter> <WarehouseLocation>USA</WarehouseLocation> <WarehouseType>0</WarehouseType> <ShippingDestinationList> <ShipToCountry>USA</ShipToCountry> <ShipToCountry>NZL</ShipToCountry> </ShippingDestinationList> </FufillmentCenter> <FufillmentCenter> <WarehouseLocation>USA</WarehouseLocation> <WarehouseType>1</WarehouseType> <ShippingDestinationList> <ShipToCountry>AUS</ShipToCountry> <ShipToCountry>USA</ShipToCountry> <ShipToCountry>SGP</ShipToCountry> </ShippingDestinationList> </FufillmentCenter> </FufillmentCenterList> </ResponseBody> </NeweggAPIResponse>
Example: Json, Response
{ "IsSuccess": true, "OperationType": "GetSellerAccountStatusResponse", "SellerID": "A006", "ResponseBody": { "Membership": 0, "FufillmentCenterList": [ { "WarehouseLocation": "TUR", "WarehouseType": 0, "ShippingDestinationList": [ "TUR", "USA" ] }, { "WarehouseLocation": "USA", "WarehouseType": 0, "ShippingDestinationList": [ "USA", "NZL" ] }, { "WarehouseLocation": "USA", "WarehouseType": 1, "ShippingDestinationList": [ "AUS", "USA", "SGP" ] } ], "SellerName": "Test_MKTPLS", "Status": "Active" } }
Request Failure Errors
For common HTTP error responses, please refer to Failed Response Error Code List.
Last updated: December 30, 2020