获取每日库存报告

获取默认仓库中商品的有效库存数、价格信息、运费以及激活状态。

相关URL

Neweggbusiness.com: https://api.newegg.com/marketplace/b2b/reportmgmt/report/result?sellerid={sellerid}
Newegg.ca: https://api.newegg.com/marketplace/can/reportmgmt/report/result?sellerid={sellerid}

注:请确保您的请求URL全都是小写(除Seller ID)并且不能包含任何空格或者换行符。

参数

名称 是否必填? 描述
sellerid 您在新蛋商城的商家编号

相关请求信息

HTTP方式 是否需要认证? 请求格式 回复格式 频率限制
PUT 需要 XML,Json XML,Json 500 请求/小时

请求文件主体

属性 是否必填? 格式 描述
IssueUser String 请求发送者在Seller Portal上注册过的邮箱地址 。
系统只接受商家注册过的Seller Portal邮箱地址。如果为空,默认值为商家编号
OperationType String 固定值:DailyInventoryReportRequest
RequestID String 新蛋分配的已提交的请求编号

Schema: GetReportRequest.xsd

示例:XML,Request

PUT https://api.newegg.com/marketplace/reportmgmt/report/result?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/xml
Accept: application/xml

<NeweggAPIRequest >
    <OperationType>DailyInventoryReportRequest</OperationType>
    <RequestBody>
        <RequestID>2PQBYWH4V68ZP</RequestID>
    </RequestBody>
</NeweggAPIRequest>

示例:Json,Request

PUT https://api.newegg.com/marketplace/reportmgmt/report/result?sellerid={sellerid}
Authorization: 720ddc067f4d115bd544aff46bc75634
SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D
Content-Type: application/json
Accept: application/json

{
    "OperationType": "DailyInventoryReportRequest",
    "RequestBody": {
        "RequestID": "2PQBYWH4V68ZP"
    }
}

回复文件主体

属性 格式 描述
IsSuccess String 获取数据状态操作:
True:成功
False:失败
SellerID String 你的商家编号
OperationType String 固定值:DailyinventoryReportResponse
RequestID String 你的请求编号
RequestType String DAILY_INVENTORY_REPORT
RequestDate String 请求时间(太平洋标准时间)
ReportFileURL String 获取报告处理文件的 ftp 文件路径:例如
ftp://API52qNFlUQ:pKLgE2aE@ftp03.newegg.com/InternationalInventoryReport_2PN75DT8ZICH8.txt
文件各属性信息:

属性名称 定义
Seller Part # 商家分配给商品的编码
NE Item # 新蛋分配给商品的编码
Currency 所有价格相关的货币格式,如果为空,系统默认:

  • US 商城:USD
  • CAN 商城: CAD
MSRP 厂商建议零售价或者为商品标价
MAP 最低广告价格。
如果商品售价低于设置的最低广告价格,网站会要求客户将该商品加入购物车来查看价格。
如果您想要删除MAP, 请在该字段里输入“0.00”,如果为空,则不更改当前设置。
Checkout MAP 如果Checkout MAP标记为True,网站会要求客户将该产品加入购物车并到支付页面才能查看商品售价。MAP值将被忽略。

也就是说,只要Checkout MAP为True,不论实际售价是高于或是低于MAP,顾客始终需要加入商品到购物车并到支付页面才能查看商品售价。

Selling Price 商品实际售价
Inventory 新蛋网站可供销售的有效商品数。如果在配送选项中填写的SBN,该字段将被忽略。
Fulfillment Option 两个选项,Newegg或者Seller。如果您在该字段指定Newegg,说明您正在使用新蛋配送服务来配送该商品,或者是您将要把该商品转为新蛋配送。如果是您自己配送或者其他方式,请指定Seller。
因此,在切换配送选项时请多加注意。
Shipping 商品的运费,有default和free两种选择
Activation Mark 对所有上传的商品,ActivationMark都默认设置为“True”,因为所有商品都必须被激活才能展示在新蛋网页。如果您想使您的商品在网页不可见,您可设置该字段为“False”
Memo String 附加信息

Schema: DailyinventoryResponse.xsd

示例:XML,Response

<?xml version="1.0" encoding="utf-8"?>
<NeweggAPIResponse>
    <IsSuccess>true</IsSuccess>
    <sellerID>A006</sellerID>
    <OperationType>DailyinventoryReportResponse</OperationType>
    <ResponseBody>
        <RequestID>2PQC13C7UYDPQ</RequestID>
        <RequestType>DAILY_INVENTORY_REPORT</RequestType>
        <RequestDate>2/21/2012 15:32:57</RequestDate>
        <ReportFileURL>ftp://APIe6Cl2FfE:M9RUtm2s@ftp03.newegg.com/InternationalInventoryReport_2PQC13C7UYDPQ.xls</ReportFileURL>
    </ResponseBody>
    <Memo />
</NeweggAPIResponse>

示例:Json,Response

{
    "NeweggAPIResponse": {
        "IsSuccess": "true",
        "sellerID": "A006",
        "OperationType": "DailyinventoryReportResponse",
        "ResponseBody": {
            "RequestID": "2PQC13C7UYDPQ",
            "RequestType": "DAILY_INVENTORY_REPORT",
            "RequestDate": "2/21/2012 15:32:57",
            "ReportFileURL": "ftp://APIe6Cl2FfE:M9RUtm2s@ftp03.newegg.com/InternationalInventoryReport_2PQC13C7UYDPQ.xls"
        },
        "Memo": null
    }
}

请求失败错误信息

常规HTTP错误回复,请参考回复失败错误代码列表

示例:XML,Response

<?xml version="1.0" encoding="utf-8"?>
<Errors>
    <Error>
        <Code>CE001</Code>
        <Message>SellerID cannot be null or empty</Message>
    </Error>
</Errors>

示例:Json,Response

[
    {
        "Code": "CE001",
        "Message": "SellerID cannot be null or empty"
    }
]

更新日期:10/15/2018