下载库存信息
你可以用 “Export” REST API 来下载库存信息:
URL端口
https://www.teapplix.com/h/[your teapplix account name]/ea/admin.php?User=xxxx&Passwd=xxxx&Action=Export
在如上url里, User=后面填你Teapplix账号的登陆名. Passwd=后面填你Teapplix账号的口令。 User, Passwd 和 Action 的参数必须是URL本身的”GET”参数。 其他参数可以用”POST”来传递.
库存报告
Subaction=Inventory+Report
(请注意 url 中的 + 表示空格)
此报告显示所选的日期范围之间消耗的库存。
ship_date_s=2012/01/20 => 对于发货日期晚于或等于 2012/01/20 的已发货订单
ship_date_e=2012/01/31 => 对于发货日期早于或等于 2012/01/31 的已发货订单
以下是用 “curl” 写的一个范例:
curl -k -o inventory_report.csv -d Subaction='Inventory%20Report' -d ship_date_s='' -d ship_date_e='' "https://www.teapplix.com/h/[your teapplix account name]/ea/admin.php?User=xxxx&Passwd=xxxx&Action=Export"
库存数量报告
Subaction=inventory_quantity_report
这个“库存数量报告” 包含 Teapplix "Inventory => Current Quantity" 网页所显示的内容. 它列出Teapplix 系统内所有的 SKU 及其数量。
以下是用 “curl” 写的一个范例:
curl -k -o quantity_report.csv -d Subaction='inventory_quantity_report' "https://www.teapplix.com/h/[your teapplix account name]/ea/admin.php?User=xxxx&Passwd=xxxx&Action=Export"
库存产品报告
Subaction=inventory_products
file_ext=csv => 支持的文件类型: csv, xls, xlsx
这将导出所有 Teapplix 里的库存产品。你可以选择CSV,XLS,XLSX格式。需要注意的是,由于内存限制,XLS和XLSX格式只能支持到20000条记录。
以下是用 “curl” 写的一个范例:
curl -k -o products.csv -d Subaction='inventory_products' -d file_ext='' "https://www.teapplix.com/h/[your teapplix account name]/ea/admin.php?User=xxxx&Passwd=xxxx&Action=Export"