Skip to main content
Published: July 06 2007, 2:18:00 PMUpdated: August 03 2022, 5:17:43 PM

Question

When I list an eBay Motors item, on the ViewItem page, for the Shipping, I see "Pickup only - see item description for details", although I do arrange for shipping. Why is this value being set?

Answer

Summary

The information displayed in Shipping and Sells to section depends on the values set for ShipToLocations and BuyerResponsibleForShipping in the AddItem request.  If the ShipToLocations is explicitly set to None, then the item is available for pickup only.


 

Detailed Description

Here are some scenarios and the corresponding effect on the ViewItem page:
 
Item.ShipToLocations Item.BuyerResponsibleForShippingDisplay on ViewItem Page
USfalseShipping:  See item description for shipping details
Sells to:    United States
UStrueShipping:  Buyer responsible for vehicle pick-up or shipping. Vehicle shipping quote is available.
Sells to:    United States
NonefalseShipping:  Pickup only - see item description for details
Sells to:    Will arrange for local pickup only (no shipping).
NonetrueShipping:  Pickup only - see item description for details
Sells to:    Will arrange for local pickup only (no shipping).


Note:
If Item.ShipToLocations is not specified, then it defaults to the site on which the item is listed.  In the case of eBay Motors (SiteID 100), it defaults to US.  Even if the site on which the item is not specified and other locations are specified, it is included by default. 
If Item.BuyerResponsibleForShipping is not specified, it defaults to true.

Here is a sample request that will list an item with Shipping set to See item description for shipping details and Sells to set to United States, Canada :

<?xml version="1.0" encoding="utf-8"?>

<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">

  <RequesterCredentials>

    <eBayAuthToken>***</eBayAuthToken>

  </RequesterCredentials>

  <Item>

    <PrimaryCategory>

      <CategoryID>34429</CategoryID>

    </PrimaryCategory>

    <Description>item description</Description>

    <ListingDuration>Days_7</ListingDuration>

    <Country>US</Country>

    <Currency>USD</Currency>

    <Title>item title</Title>

..

..

..

    <PaymentDetails>

      <DaysToFullPayment>7</DaysToFullPayment>

    </PaymentDetails>

    <PostalCode>95125</PostalCode>

    <BuyerResponsibleForShipping>false</BuyerResponsibleForShipping>

    <StartPrice>14995.00</StartPrice>

    <Quantity>1</Quantity>

    <ShipToLocations>CA</ShipToLocations>

    <PaymentMethods>MOCC</PaymentMethods>

    <PictureDetails>

      <GalleryURL>http://www.mydomain.com/pic1.jpg</GalleryURL>

      <PictureURL>http://www.mydomain.com/pic2.jpg</PictureURL>

    </PictureDetails>

  </Item>

</AddItemRequest>
 


Version Info

The code example above was based on the versions specified below:

API Schema Version1123

 

 


Additional Resources

 

How well did this answer your question?
Answers others found helpful