Developers Program

Removing domestic shipping rate table applied to a listing

Published: February 11 2011, 11:19:00 AMยทUpdated: August 19 2022, 10:12:24 AM

Products

Question

I have a listing which has domestic shipping rate table applied to it. I don't want the rate table applied any more. How do I remove it?

Answer

Lets assume your item was listed with the foll. ShippingDetails container

<ShippingDetails>
<CalculatedShippingRate>
<OriginatingPostalCode>95125</OriginatingPostalCode>
<ShippingIrregular>false</ShippingIrregular>
<ShippingPackage>PackageThickEnvelope</ShippingPackage>
<WeightMajor measurementSystem="English" unit="lbs">2</WeightMajor>
<WeightMinor measurementSystem="English" unit="oz">6</WeightMinor>
<InternationalPackagingHandlingCosts currencyID="USD">0.0</InternationalPackagingHandlingCosts>
</CalculatedShippingRate>
<ShippingServiceOptions>
<ShippingService>UPSGround</ShippingService>
<ShippingServiceCost currencyID="USD">6.0</ShippingServiceCost>
<ShippingServicePriority>1</ShippingServicePriority>
<ExpeditedService>false</ExpeditedService>
<ShippingTimeMin>1</ShippingTimeMin>
<ShippingTimeMax>5</ShippingTimeMax>
</ShippingServiceOptions>
<InternationalShippingServiceOption>
<ShippingService>UPSWorldWideExpress</ShippingService>
<ShippingServicePriority>1</ShippingServicePriority>
<ShipToLocation>Worldwide</ShipToLocation>
</InternationalShippingServiceOption>
<ShippingType>FlatDomesticCalculatedInternational</ShippingType>
<!-- Apply Shipping Rate Table to this listing -->

<RateTableDetails>
<DomesticRateTable>Default</DomesticRateTable>
</RateTableDetails>
</ShippingDetails>

In order to remove the rate table applied to a listing you will need to revise your listing by passing the entire ShippingDetails container with an empty RateTableDetails tag.

<ShippingDetails>
<CalculatedShippingRate>
<OriginatingPostalCode>95125</OriginatingPostalCode>
<ShippingIrregular>false</ShippingIrregular>
<ShippingPackage>PackageThickEnvelope</ShippingPackage>
<WeightMajor measurementSystem="English" unit="lbs">2</WeightMajor>
<WeightMinor measurementSystem="English" unit="oz">6</WeightMinor>
<InternationalPackagingHandlingCosts currencyID="USD">0.0</InternationalPackagingHandlingCosts>
</CalculatedShippingRate>
<ShippingServiceOptions>
<ShippingService>UPSGround</ShippingService>
<ShippingServiceCost currencyID="USD">6.0</ShippingServiceCost>
<ShippingServicePriority>1</ShippingServicePriority>
<ExpeditedService>false</ExpeditedService>
<ShippingTimeMin>1</ShippingTimeMin>
<ShippingTimeMax>5</ShippingTimeMax>
</ShippingServiceOptions>
<InternationalShippingServiceOption>
<ShippingService>UPSWorldWideExpress</ShippingService>
<ShippingServicePriority>1</ShippingServicePriority>
<ShipToLocation>Worldwide</ShipToLocation>
</InternationalShippingServiceOption>
<ShippingType>FlatDomesticCalculatedInternational</ShippingType>
<!-- Remove Shipping Rate Table from this listing -->
<RateTableDetails/>
</ShippingDetails>
How well did this answer your question?