追踪商品库存
追踪商品在全球所有已登记的仓库,包括美国仓的有效库存信息。
相关URL
Newegg.com: https://api.newegg.com/marketplace/contentmgmt/item/international/inventory?sellerid={sellerid}
注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。
参数
| 名称 | 是否必填? | 描述 |
| sellerid | 是 | 您在新蛋商城的商家编号 |
相关请求信息
| HTTP方式 | 是否需要认证? | 请求格式 | 回复格式 | 频率限制 |
| PUT | 需要 | XML,Json | XML,Json | 10,000 请求/小时 |
请求文件主体
| 属性 | 是否必填? | 格式 | 描述 |
| Condition | 否 | Integer | 有效值:
注:
|
| Type | 是 | Integer | 可用属性:
|
| Value | 是 | String | 根据指定类型的字符串 |
| WarehouseLocation | 否 | String | 您仓库所在国家的国际标准3位国家编码。 完整国家代码列表,请通过以下链接下载:International Country Guide 如果不填,则默认为所有 |
Schema: GetInventoryRequest.xsd
示例:XML,Request
PUT https://api.newegg.com/marketplace/contentmgmt/item/international/inventory?sellerid={SellerID}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/xml
Accept: application/xml
<ContentQueryCriteria>
<Type>1</Type>
<Value>A006testitem201201021459</Value>
<WarehouseList>
<WarehouseLocation>USA</WarehouseLocation>
<WarehouseLocation>AUS</WarehouseLocation>
</WarehouseList>
</ContentQueryCriteria>
示例:Json,Request
PUT https://api.newegg.com/marketplace/contentmgmt/item/international/inventory?sellerid={SellerID}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json
{
"Type": "1",
"Value": "A006testitem201201021459",
"WarehouseList": {
"WarehouseLocation": [
"USA",
"AUS"
]
}
}
回复文件主体
| 属性 | 格式 | 描述 |
| SellerID | String | 您的商家编号 |
| ItemNumber | String | 新蛋分配的商品编号 |
| SellerPartNumber | String | 商家商品编号 |
| WarehouseLocation | String | 您仓库所在国家的国际标准3位国家编码。
完整国家代码列表,请通过以下链接下载:International Country Guide |
| FulfillmentOption | String | 有效值:
|
| AvailableQuantity | Integer | 该仓库当前的有效库存数量 |
| WarehouseCode | String | 表明库存在新蛋哪个仓库中。 有效值:
注:只有当商品目前存放在新蛋仓库时才会返回该信息。 |
| Quantity | Integer | 该新蛋仓库当前的有效库存数量
注:只有当商品目前存放在新蛋仓库时才会返回该信息。 |
Schema: GetInventoryResponse.xsd
示例:XML,Response
<?xml version="1.0" encoding="utf-8"?>
<InventoryResult>
<SellerID>A006</SellerID>
<ItemNumber>9SIA0060884598</ItemNumber>
<SellerPartNumber>A006testitem201201021459</SellerPartNumber>
<InventoryAllocation>
<Inventory>
<WarehouseLocation>USA</WarehouseLocation>
<FulfillmentOption>0</FulfillmentOption>
<AvailableQuantity>107</AvailableQuantity>
</Inventory>
<Inventory>
<WarehouseLocation>USA</WarehouseLocation>
<FulfillmentOption>1</FulfillmentOption>
<AvailableQuantity>40</AvailableQuantity>
<WarehouseAllocation>
<Warehouse>
<WarehouseCode>07</WarehouseCode>
<Quantity>3</Quantity>
</Warehouse>
<Warehouse>
<WarehouseCode>12</WarehouseCode>
<Quantity>37</Quantity>
</Warehouse>
</WarehouseAllocation>
</Inventory>
<Inventory>
<WarehouseLocation>AUS</WarehouseLocation>
<FulfillmentOption>0</FulfillmentOption>
<AvailableQuantity>0</AvailableQuantity>
</Inventory>
</InventoryAllocation>
</InventoryResult>
示例:Json,Response
{
"SellerID": "A006",
"ItemNumber": "9SIA0060884598",
"SellerPartNumber": "A006testitem201201021459",
"InventoryAllocation": {
"Inventory": [
{
"WarehouseLocation": "USA",
"FulfillmentOption": "0",
"AvailableQuantity": "107"
},
{
"WarehouseLocation": "USA",
"FulfillmentOption": "1",
"AvailableQuantity": "40",
"WarehouseAllocation": {
"Warehouse": [
{
"WarehouseCode": "07",
"Quantity": "3"
},
{
"WarehouseCode": "12",
"Quantity": "37"
}
]
}
},
{
"WarehouseLocation": "AUS",
"FulfillmentOption": "0",
"AvailableQuantity": "0"
}
]
}
}
请求失败错误信息
常规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 | No data found
找不到数据 |
示例: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"
}
]
更新日期: 10/15/2018