XML Ebay 交易 API - 无需设置成本即可设置额外的送货地点
XML Ebay Trading API - Set extra Shipping locations without setting cost
我在此处找到了有关如何设置送货详情的详细信息:XML Ebay Trading API - Shipping element
我也知道我可以使用 <ExcludeShipToLocation></ExcludeShipToLocation>
标签排除位置。
但是,如何在不指定相应费用的情况下添加额外的送货地点? (有些位置,我想请买家联系卖家)
我知道可以通过在 Ebay 上编辑商品来做到这一点,但我如何通过 API 做到这一点?可能吗?
可以在
中指定额外的送货地点
Item.ShippingDetails.InternationalShippingServiceOption.ShipToLocation
未指定成本或服务的容器。这就像在 eBay 上一样。
http://developer.ebay.com/DevZone/guides/ebayfeatures/Development/Shipping-Locations.html
几个月后我又回到了这个问题上,我终于发现我做错了什么。
没有 cost/service 的其他送货地点应在商品级别指定,而不是在 ShippingDetails 中指定。
<Item>
<ShipToLocations>string</ShipToLocations>
<ShippingDetails>...</ShippingDetails>
</Item>
顺便说一句,以下是可能的送货地点值:
https://developer.ebay.com/devzone/finding/callref/Enums/shipToLocationList.html
我在此处找到了有关如何设置送货详情的详细信息:XML Ebay Trading API - Shipping element
我也知道我可以使用 <ExcludeShipToLocation></ExcludeShipToLocation>
标签排除位置。
但是,如何在不指定相应费用的情况下添加额外的送货地点? (有些位置,我想请买家联系卖家)
我知道可以通过在 Ebay 上编辑商品来做到这一点,但我如何通过 API 做到这一点?可能吗?
可以在
中指定额外的送货地点Item.ShippingDetails.InternationalShippingServiceOption.ShipToLocation
未指定成本或服务的容器。这就像在 eBay 上一样。
http://developer.ebay.com/DevZone/guides/ebayfeatures/Development/Shipping-Locations.html
几个月后我又回到了这个问题上,我终于发现我做错了什么。
没有 cost/service 的其他送货地点应在商品级别指定,而不是在 ShippingDetails 中指定。
<Item>
<ShipToLocations>string</ShipToLocations>
<ShippingDetails>...</ShippingDetails>
</Item>
顺便说一句,以下是可能的送货地点值: https://developer.ebay.com/devzone/finding/callref/Enums/shipToLocationList.html