Afternoon,
I am having a number of issues at the moment when adding international shipping to items through the AddItem call of the Trading API. Below is the relevant parts of the XML being sent and the response coming back. Any help would be much appreciated.
XML being sent to eBay:
<?xml version="1.0" encoding="UTF-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<DetailLevel>ReturnAll</DetailLevel>
<WarningLevel>High</WarningLevel>
<ErrorLanguage>en_GB</ErrorLanguage>
<Version>763</Version>
<Item>
<Site>UK</Site>
<ShippingDetails>
<PaymentInstructions>Please make payment within 24 hours of purchase.</PaymentInstructions>
<ShippingType>Flat</ShippingType>
<GetItFast>true</GetItFast>
<ShippingServiceOptions>
<ShippingService>UK_OtherCourier</ShippingService>
<ShippingServicePriority>1</ShippingServicePriority>
<ShippingServiceCost currencyID="GBP">0</ShippingServiceCost>
<ShippingServiceAdditionalCost currencyID="GBP">0</ShippingServiceAdditionalCost>
</ShippingServiceOptions>
<ShippingServiceOptions>
<ShippingService>UK_OtherCourier24</ShippingService>
<ShippingServicePriority>2</ShippingServicePriority>
<ShippingServiceCost currencyID="GBP">8.95</ShippingServiceCost>
<ShippingServiceAdditionalCost currencyID="GBP">3</ShippingServiceAdditionalCost>
</ShippingServiceOptions>
<InternationalShippingServiceOption>
<ShippingService>UK_SellersStandardInternationalRate</ShippingService>
<ShippingServiceCost>7.14</ShippingServiceCost>
<ShippingServicePriority>5</ShippingServicePriority>
<ShipToLocation>AT</ShipToLocation>
<ShipToLocation>DK</ShipToLocation>
<ShipToLocation>CH</ShipToLocation>
</InternationalShippingServiceOption>
<InternationalShippingServiceOption>
<ShippingService>UK_SellersStandardInternationalRate</ShippingService>
<ShippingServiceCost>7.14</ShippingServiceCost>
<ShippingServicePriority>6</ShippingServicePriority>
<ShipToLocation>CZ</ShipToLocation>
<ShipToLocation>IT</ShipToLocation>
<ShipToLocation>SK</ShipToLocation>
<ShipToLocation>ES</ShipToLocation>
</InternationalShippingServiceOption>
<DispatchTimeMax>1</DispatchTimeMax>
</Item>
</AddItemRequest>
eBay Response:
<?xml version="1.0" encoding="UTF-8"?>
<AddItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2012-07-02T15:21:55.364Z</Timestamp>
<Ack>Failure</Ack>
<Errors>
<ShortMessage>All locations are dropped.</ShortMessage>
<LongMessage>All locations provided for postage service "50301" are not allowable for this site.</LongMessage>
<ErrorCode>17521</ErrorCode>
<SeverityCode>Error</SeverityCode>
<ErrorParameters ParamID="0">
<Value>50301</Value>
</ErrorParameters>
<ErrorClassification>RequestError</ErrorClassification>
</Errors>
<Version>779</Version>
<Build>E779_INTL_BUNDLED_14991382_R1</Build>
</AddItemResponse>
Has anyone else ever come across this before?
Cheers,
Aran