Home
Find the answer to your question
How to list a motor listing item in eBayMotor Site (SiteID: 100)
Note: When making these calls the Site ID in your header should be 100
1) Use GetCategorySpecifics API call with the category where you want to list your motor item. Note that you can only list in leaf categories.
Let’s say for example you want to list in Category ID: 43953 Category Name: eBay Motors:Parts & Accessories:Car & Truck Parts:Wheels, Tires & Parts:Wheels ------------------------ <?xml version="1.0" encoding="utf-8"?> <GetCategorySpecificsRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <Version>761</Version> <CategoryID>43953</CategoryID> <RequesterCredentials> <eBayAuthToken>ABC…123</eBayAuthToken> </RequesterCredentials> </GetCategorySpecificsRequest>
|
Now identify NameRecommendations that suits you item.
2) Make the AddItem call by including the custom item specifics with its respective values.
<?xml version="1.0" encoding="utf-8"?> <VerifyAddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <WarningLevel>High</WarningLevel> <Item> <SKU>DTS-Testitem-1</SKU> <Site>eBayMotors</Site> <Country>US</Country> <Currency>USD</Currency> <Title>Testitem. Motor listing.</Title> <Description>Test description here...</Description> <ConditionID>1000</ConditionID> <ListingDuration>Days_30</ListingDuration> <ListingType>FixedPriceItem</ListingType> <Location>SanJose, CA</Location> <Quantity>6</Quantity> <StartPrice>19.99</StartPrice> <PaymentMethods>PayPal</PaymentMethods> <PayPalEmailAddress>test@paypal.com</PayPalEmailAddress> <PrimaryCategory> <CategoryID>43953</CategoryID> </PrimaryCategory> <DispatchTimeMax>3</DispatchTimeMax> <ShippingDetails> <PaymentInstructions>Payment must be received within seven (7) days of purchase.</PaymentInstructions> <ShippingServiceOptions> <ShippingService>ShippingMethodStandard</ShippingService> <ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost> <ShippingServiceAdditionalCost currencyID="USD">0.0</ShippingServiceAdditionalCost> <ShippingServicePriority>1</ShippingServicePriority> <ExpeditedService>false</ExpeditedService> <ShippingTimeMin>1</ShippingTimeMin> <ShippingTimeMax>5</ShippingTimeMax> </ShippingServiceOptions> <ShippingType>Flat</ShippingType> </ShippingDetails> <ShipToLocations>US</ShipToLocations> <PictureDetails> <GalleryType>Gallery</GalleryType> <GalleryURL>http://i1.sandbox.ebayimg.com/03/i/00/1f/68/c2_1.JPG?set_id=8800005007</GalleryURL> <PictureURL>http://i1.sandbox.ebayimg.com/03/i/00/1f/68/c2_1.JPG?set_id=8800005007</PictureURL> </PictureDetails> <ProxyItem>false</ProxyItem> <ItemSpecifics> <NameValueList> <Name>Rim Material</Name> <Value>Aluminum</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Rim Width</Name> <Value>9</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Rim Diameter</Name> <Value>18</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Offset</Name> <Value>0</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Number of Bolts</Name> <Value>8</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Bolt Pattern</Name> <Value>8x165.1</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Rim Brand</Name> <Value>Pro Comp Wheels</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Manufacturer Part Number</Name> <Value>6047-8982</Value> <Source>ItemSpecific</Source> </NameValueList> <NameValueList> <Name>Rim Structure</Name> <Value>1-Piece</Value> <Source>ItemSpecific</Source> </NameValueList> </ItemSpecifics> <ReturnPolicy> <RefundOption>MoneyBack</RefundOption> <Refund>Money Back</Refund> <ReturnsWithinOption>Days_60</ReturnsWithinOption> <ReturnsWithin>60 Days</ReturnsWithin> <ReturnsAcceptedOption>ReturnsAccepted</ReturnsAcceptedOption> <ReturnsAccepted>Returns Accepted</ReturnsAccepted> <Description>Return policy description here...</Description> <ShippingCostPaidByOption>Buyer</ShippingCostPaidByOption> <ShippingCostPaidBy>Buyer</ShippingCostPaidBy> </ReturnPolicy> </Item> <RequesterCredentials> <eBayAuthToken>ABC…123</eBayAuthToken> </RequesterCredentials> </VerifyAddItemRequest>
|
Note: When making these calls the Site ID in your header should be 100