Home
Find the answer to your question
How can I remove Insurance from a listing?
Detailed Description
When looking at the schema for the InsuranceDetails container in order to remove Insurance from a listing, there can be 4 possible combinations of input. To illustrate what happens when each combination is used, we will start with this AddItem example that indicates an Optional Shipping Insurance charge:
<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>507</Version>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Item>
<PrimaryCategory>
<CategoryID>3833</CategoryID>
</PrimaryCategory>
<Country>US</Country>
<Currency>USD</Currency>
<Description>This is a test for Shipping Insurance</Description>
<ListingDuration>Days_7</ListingDuration>
<Location>Farmington Hills</Location>
<StartPrice currencyID="USD">0.99</StartPrice>
<SKU>000-TEST</SKU>
<PaymentMethods>AmEx</PaymentMethods>
<Quantity>1</Quantity>
<Site>US</Site>
<Title>Shipping Insurance</Title>
<ListingType>Chinese</ListingType>
<ShippingDetails>
<SalesTax>
<SalesTaxPercent>6.00</SalesTaxPercent>
<SalesTaxState>MI</SalesTaxState>
</SalesTax>
<ShippingServiceOptions>
<ShippingService>ShippingMethodStandard</ShippingService>
<ShippingServiceCost>3.50</ShippingServiceCost>
<ShippingServiceAdditionalCost>2.00</ShippingServiceAdditionalCost>
<ShippingServicePriority>1</ShippingServicePriority>
</ShippingServiceOptions>
<ShippingType>Flat</ShippingType>
<InsuranceDetails>
<InsuranceFee currencyID="USD">2</InsuranceFee>
<InsuranceOption>Optional</InsuranceOption>
</InsuranceDetails>
</ShippingDetails>
</Item>
<RequesterCredentials>
<eBayAuthToken>token</eBayAuthToken>
</RequesterCredentials>
</AddItemRequest>
Here are the results that can be expected when using each combination in a ReviseItem call: