我想获得订单的运费。我可以获得订单的金额、客户信息、购买日期……但运费在哪里?

任何代码或链接都会非常有帮助。

谢谢。

最佳答案

假设您使用的是 Orders API ,每件商品的运费都存储在 shippingPrice 类型的 OrderItem 属性中。您需要使用 ListOrderItems 操作来检索订单的商品。

有关 shippingPrice 属性的说明,请参见 Orders API documentation 的第 26 页。有关 ListOrderItems 操作的说明,请参见第 25 页。

关于amazon-web-services - 如何使用亚马逊 MWS Api 获取订单的运费?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9824135/

10-11 06:49