我如何使用 MWS API 通过其 SKU ID 找到库存的入库货件 ID?
How can I find Inbound shipment ID of inventory by its SKU ID using MWS API?
我只有产品的 SKU ID,现在我需要找到它的入库货件 ID 并获取货件内容。
例如:
如果通过 ID 为 'TESTSHP' 的货件运送了 3 件产品:
1.name_of_product='TV', SKU='PRDCT-1-1', quantity='1',...
2.name_of_product='PC', SKU='PRDCT-2-2', quantity='2',...
3.name_of_product='Tablet', SKU='PRDCT-3-10', quantity='10',...
在应用程序中,用户仅输入 SKU ID 的这部分 'PRDCT',我需要显示使用相同货件 ID 运输的所有产品的列表。
结果我必须显示:
1.name_of_product='TV', SKU='PRDCT-1-1', quantity='1',...
2.name_of_product='PC', SKU='PRDCT-2-2', quantity='2',...
3.name_of_product='Tablet', SKU='PRDCT-3-10', quantity='10',...
任何帮助将不胜感激。
如果我没理解错的话,您有一个 SKU,想知道这个 SKU 属于哪个货件编号。我可以建议的唯一方法是使用该货件 ID 调用 ListInboundShipments with the ShipmentStatus you want and loop through them looking for the SKU that you have, 'PRDCT'. Potentially many times, depending on how many shipments you have. Once you find that SKU on a particular shipment, get that shipment ID and call, ListInboundShipmentItems 以获取其中所有其他 SKU 的列表。
我不知道哪里可以按SKU搜索操作。
我只有产品的 SKU ID,现在我需要找到它的入库货件 ID 并获取货件内容。
例如: 如果通过 ID 为 'TESTSHP' 的货件运送了 3 件产品:
1.name_of_product='TV', SKU='PRDCT-1-1', quantity='1',...
2.name_of_product='PC', SKU='PRDCT-2-2', quantity='2',...
3.name_of_product='Tablet', SKU='PRDCT-3-10', quantity='10',...
在应用程序中,用户仅输入 SKU ID 的这部分 'PRDCT',我需要显示使用相同货件 ID 运输的所有产品的列表。 结果我必须显示:
1.name_of_product='TV', SKU='PRDCT-1-1', quantity='1',...
2.name_of_product='PC', SKU='PRDCT-2-2', quantity='2',...
3.name_of_product='Tablet', SKU='PRDCT-3-10', quantity='10',...
任何帮助将不胜感激。
如果我没理解错的话,您有一个 SKU,想知道这个 SKU 属于哪个货件编号。我可以建议的唯一方法是使用该货件 ID 调用 ListInboundShipments with the ShipmentStatus you want and loop through them looking for the SKU that you have, 'PRDCT'. Potentially many times, depending on how many shipments you have. Once you find that SKU on a particular shipment, get that shipment ID and call, ListInboundShipmentItems 以获取其中所有其他 SKU 的列表。
我不知道哪里可以按SKU搜索操作。