XML Ebay Trading API - 设置额外的送货地点而无需设置费用

时间:2017-01-09 12:07:40

标签: xml ebay shipping ebay-api

我在此处找到了有关如何设置送货详情的详细信息:XML Ebay Trading API - Shipping element

我也知道我可以使用<ExcludeShipToLocation></ExcludeShipToLocation>代码排除位置。

但是,如何在不指定相应成本的情况下添加额外的送货地点? (对于某些地区,我想要求买方联系卖家)

我知道可以通过编辑易趣上的项目来做到这一点,但我怎么能通过API做到这一点?有可能吗?

2 个答案:

答案 0 :(得分:1)

可以在

中指定附加的地点
Item.ShippingDetails.InternationalShippingServiceOption.ShipToLocation 

容器,但未指定成本或服务。这就像在eBay上一样。

http://developer.ebay.com/devzone/xml/docs/reference/ebay/additem.html#Request.Item.ShippingDetails.InternationalShippingServiceOption.ShipToLocation

http://developer.ebay.com/DevZone/guides/ebayfeatures/Development/Shipping-Locations.html

答案 1 :(得分:0)

几个月后我回到这个问题,我终于找到了我做错的事。

应在物品级别指定没有成本/服务的其他收货地点,而不是在ShippingDetails中指定。

<Item>
    <ShipToLocations>string</ShipToLocations>
    <ShippingDetails>...</ShippingDetails>
</Item>

顺便说一句,这是可能的送货地点价值: https://developer.ebay.com/devzone/finding/callref/Enums/shipToLocationList.html