通过 MWS 提要创建装运计划后,不确定如何创建装运
After creating shipment plan through MWS feed, not sure how to create shipment
我对某事有点困惑。我通读了以下 API,其中详细介绍了如何使用 Amazon's MWS feed API
创建 FBA 入库货件 "plan"
I used the following template from Amazon to create the shipment plan flat file
太棒了。我成功实施了 API 并使用 _POST_FLAT_FILE_FBA_CREATE_INBOUND_PLAN_
将平面文件提交给 MWS 进行处理。一切正常,我在计划列表中看到了我的新装运计划,它 returns 给我一个计划 ID。
我只是不知道下一步该做什么。我现在想根据该计划创建一个装运,其中包含所有项目(无修改)。该文档建议我使用 _POST_FLAT_FILE_FBA_CREATE_INBOUND_SHIPMENT_
,但我找不到任何关于使用什么模板的详细信息,或者我什至如何指定从创建入站计划返回给我的计划 ID。
任何人都可以提供一些关于 "next step" 创建实际入库货件的指导吗?
Amazon MWS for FBA Sellers guide recommends using the CreateInboundShipmentPlan and CreateInboundShipment API calls, neither of which needs a flat file. From past experience I strongly recommend not using CSV files if you can avoid it: there are many pitfalls. But if you must, here are XLS files describing both CreateInboundShipmentRequest and UpdateInboundShipmentRequest.
我对某事有点困惑。我通读了以下 API,其中详细介绍了如何使用 Amazon's MWS feed API
创建 FBA 入库货件 "plan"I used the following template from Amazon to create the shipment plan flat file
太棒了。我成功实施了 API 并使用 _POST_FLAT_FILE_FBA_CREATE_INBOUND_PLAN_
将平面文件提交给 MWS 进行处理。一切正常,我在计划列表中看到了我的新装运计划,它 returns 给我一个计划 ID。
我只是不知道下一步该做什么。我现在想根据该计划创建一个装运,其中包含所有项目(无修改)。该文档建议我使用 _POST_FLAT_FILE_FBA_CREATE_INBOUND_SHIPMENT_
,但我找不到任何关于使用什么模板的详细信息,或者我什至如何指定从创建入站计划返回给我的计划 ID。
任何人都可以提供一些关于 "next step" 创建实际入库货件的指导吗?
Amazon MWS for FBA Sellers guide recommends using the CreateInboundShipmentPlan and CreateInboundShipment API calls, neither of which needs a flat file. From past experience I strongly recommend not using CSV files if you can avoid it: there are many pitfalls. But if you must, here are XLS files describing both CreateInboundShipmentRequest and UpdateInboundShipmentRequest.