我通过python SDK使用ebay API,但我发现了几点,发货和退货。
对于运输,我试图提供免费的标准家政服务和额外的免费服务。我该如何实现?我有各种不同的方式,但通常最终会创建一种送货服务。
我目前的代码是:
'ShippingDetails': [{"ShippingType": "Free",
'ShippingServiceOptions': {
"FreeShipping": "true",
'ShippingService': 'UK_OtherCourier48',
'ShippingServiceCost': 0},
'GlobalShipping': 'true'},
{"ShippingType": "Flat",
'ShippingServiceOptions': {
"FreeShipping": "false",
'ShippingService': 'UK_OtherCourier24',
'ShippingServiceCost': 7.99}},
],
对于退货,我只想尝试30天的退货政策,但是,它总是默认为标准的14天。以下是我一直在尝试的内容:
'ReturnPolicy': {'ReturnsAcceptedOption': 'ReturnsAccepted',
'ReturnsWithin': '30 days of',
'ShippingCostPaidByOption': 'Buyer',
'ReturnPolicy': {'ReturnsWithinOption': 'Days_30'}},
我已经在线搜索并通过文档搜索但无法找到我正在寻找的内容。
非常感谢