批量获取商品价格
批量获取包括美国在内的所有目的地国家的商品价格相关信息。
相关URL
Newegg.com: https://api.newegg.com/marketplace/contentmgmt/item/international/Pricelist?sellerid={SellerID}
注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。
参数
名称 | 是否必填? | 描述 |
sellerid | 是 | 您在新蛋商城的商家编号 |
相关请求信息
HTTP方式 | 是否需要认证? | 请求格式 | 回复格式 | 频率限制 |
PUT | 需要 | XML,Json | XML,Json | 10,000 请求/小时 |
请求文件主体
属性 | 是否必填? | 格式 | 描述 |
Type | 是 | String | 有效值: 0: NE Item#(新蛋商品编号) 1: Seller Part#(商家商品编号) 2: UPC Code(UPC编号) 如果不填,默认值为Seller Part# |
Value | 是 | String Array | 多个指定值的字符串 |
CountryCode | 否 | String Array | 您仓库所在国家的国际标准3位国家编码。 完整国家代码列表,请通过以下链接下载:International Country Guide 如果不填,则默认为所有 |
Schema: GetPriceListRequest.xsd
示例:XML,Request
POST https://api.newegg.com/marketplace/contentmgmt/item/international/Pricelist?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/xml Accept: application/xml <ContentQueryCriteria> <Type>1</Type> <Values> <Key>A006TestItem2022050601</Key> <Key>A006TestItem2022050602</Key> <Key>A006TestItem2022050603</Key> </Values> <CountryList> <CountryCode>USA</CountryCode> <CountryCode>CHN</CountryCode> </CountryList> </ContentQueryCriteria>
示例:Json,Request
POST https://api.newegg.com/marketplace/contentmgmt/item/international/Pricelist?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "Type": "1", "Values": ["A006TestItem2022050601","A006TestItem2022050602","A006TestItem2022050603"], "CountryList": ["USA","CHN"] }
回复文件主体
属性 | 格式 | 描述 |
SellerID | String | 您的商家编号 |
TotalCount | Integer | 商品价格数量 |
SellerPartNumber | String | Seller part#,卖家自定义的商品唯一标识符 |
ItemNumber | String | 以9SI开头的新蛋商品编号 |
CountryCode | String | 您仓库所在国家的国际标准3位国家编码。
完整国家代码列表,请通过以下链接下载:International Country Guide |
Currency | Integer | 用于识别您商品销售目标国家的Selling Price(销售价格),MSRP(厂商建议零售价),MAP(最低广告价格)的货币单位。若为空,则默认值为 USD。
完整国家代码列表,请通过以下链接下载:International Country Guide |
Active | Integer | 有效值: 0: 未激活状态 1: 已激活状态 |
MAP | Decimal | 最低广告价格。
如果商品售价低于设置的最低广告价格,网站会要求客户将该商品加入购物车来查看价格。 |
CheckoutMAP | Integer | 有效值:
注:
|
SellingPrice | Decimal | 实际销售价格 |
EnableFreeShipping | Integer | 有效值: 0: Default(按照运费计算公式收取运费) 1: Free Shipping(免运费) |
OnPromotion | Integer
|
有效值: 0: No active Promotion(无促销) 1: Active promotion with Price Lock(锁定价格的有效促销) 2: Active Promotion with Promotion Code(有优惠券的有效促销) 3: Active promotion with Auto Add To Cart(买赠活动的有效促销) 4: Active Promotion with Combo(捆绑式组合促销) 5: Active Promotion with Volume Discount(批量折扣促销) |
ShipByNewegg | Integer | 有效值: 0:商家配送 1:新蛋配送 |
LimitQuantity | Integer | 客户在48小时内可以购买该商品的最大数量。最大值是500。注意以下返值: 0:系统将删除现有值 null:无更新 |
Schema: GetPriceListResponse.xsd
示例:XML,Response
<NeweggAPIResponse xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xmlns:xsd=http://www.w3.org/2001/XMLSchema> <IsSuccess>true</IsSuccess> <OperationType>GetPriceList</OperationType> <SellerID>A006</SellerID> <ResponseDate>2022-04-20T23:46:41.7786361-07:00</ResponseDate> <ResponseBody> <ItemList> <PriceResult> <ItemNumber>9SIA00603V5190</ItemNumber> <SellerPartNumber>A006-TestItem-001</SellerPartNumber> <PriceList> <Price> <CountryCode>USA</CountryCode> <Currency>USD</Currency> <Active>1</Active> <MAP>25.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>80.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity xsi:nil="true" /> </Price> <Price> <CountryCode>CHN</CountryCode> <Currency>USD</Currency> <Active>0</Active> <MAP>25.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>80.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity xsi:nil="true" /> </Price> </PriceList> </PriceResult> <PriceResult> <ItemNumber>9SIA00603V5191</ItemNumber> <SellerPartNumber>A006-TestItem-002</SellerPartNumber> <PriceList> <Price> <CountryCode>USA</CountryCode> <Currency>USD</Currency> <Active>1</Active> <MAP>50.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>100.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity>20</LimitQuantity> </Price> <Price> <CountryCode>CHN</CountryCode> <Currency>USD</Currency> <Active>0</Active> <MAP>50.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>100.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity>20</LimitQuantity> </Price> </PriceList> </PriceResult> <PriceResult> <ItemNumber>9SIA00603V5192</ItemNumber> <SellerPartNumber>A006-TestItem-003</SellerPartNumber> <PriceList> <Price> <CountryCode>USA</CountryCode> <Currency>USD</Currency> <Active>1</Active> <MAP>75.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>120.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity xsi:nil="true" /> </Price> <Price> <CountryCode>CHN</CountryCode> <Currency>USD</Currency> <Active>0</Active> <MAP>75.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>120.00</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>0</OnPromotion> <ShipByNewegg>0</ShipByNewegg> <LimitQuantity xsi:nil="true" /> </Price> </PriceList> </PriceResult> </ItemList> <TotalCount>3</TotalCount> </ResponseBody> </NeweggAPIResponse>
示例:Json,Response
{ "ResponseBody": { "ItemList": [ { "ItemNumber": "9SIA00603V5190", "SellerPartNumber": "A006-TestItem-001", "PriceList": [ { "CountryCode": "USA", "Currency": "USD", "Active": 1, "MAP": 25.99, "CheckoutMAP": 0, "SellingPrice": 80, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0 }, { "CountryCode": "CHN", "Currency": "USD", "Active": 0, "MAP": 25.99, "CheckoutMAP": 0, "SellingPrice": 80, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0 } ] }, { "ItemNumber": "9SIA00603V5191", "SellerPartNumber": "A006-TestItem-002", "PriceList": [ { "CountryCode": "USA", "Currency": "USD", "Active": 1, "MAP": 50.99, "CheckoutMAP": 0, "SellingPrice": 100, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0, "LimitQuantity": 20 }, { "CountryCode": "CHN", "Currency": "USD", "Active": 0, "MAP": 50.99, "CheckoutMAP": 0, "SellingPrice": 100, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0, "LimitQuantity": 20 } ] }, { "ItemNumber": "9SIA00603V5192", "SellerPartNumber": "A006-TestItem-003", "PriceList": [ { "CountryCode": "USA", "Currency": "USD", "Active": 1, "MAP": 75.99, "CheckoutMAP": 0, "SellingPrice": 120, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0 }, { "CountryCode": "CHN", "Currency": "USD", "Active": 0, "MAP": 75.99, "CheckoutMAP": 0, "SellingPrice": 120, "EnableFreeShipping": 0, "OnPromotion": "0", "ShipByNewegg": 0 } ] } ], "TotalCount": 3 }, "IsSuccess": true, "OperationType": "GetPriceList", "SellerID": "A006", "ResponseDate": "2022-04-20T23:46:41.7786361-07:00" }
请求失败错误信息
常规HTTP错误回复,请参考回复失败错误代码列表。
错误代码 | 描述 |
CT001 | Invalid ItemNumber
无效的商品编号 |
CT002 | Invalid SellerPartNumber
无效的Seller Part# |
CT003 | Invalid UPCCode
无效的UPC Code |
CT005 | Invalid Action Type. We only support: 0 – NE Item#, 1 — Seller Parts#, 2 — UPC Code
无效的Action类型。我们只支持:0-NE Item#,1- Seller Parts#,2-UPC Code |
CT010 | Cannot find item with specified item condition.
找不到指定condition的商品 |
CT026 | Can’t find this item in the system, please create first
系统中找不到该商品,请先创建 |
示例:XML,Response
<?xml version="1.0" encoding="utf-8"?> <Errors> <Error> <Code>CT002</Code> <Message>Invalid SellerPartNumber</Message> </Error> </Errors>
示例:Json,Response
[ { "Code": "CT002", "Message": "Invalid SellerPartNumber" } ]
更新日期:03/09/2022