Find the answer to your question
Advanced Search
Summary
Seller is approved for the eBay Refurbished Program but getting the error "Seller is not eligible to use Refurbished Item Condition in this Category" when listing/revising the item as below:
<?xml version="1.0"encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>1123</Version>
<Item>
<StartPrice>500.0</StartPrice>
<Country>US</Country>
<Currency>USD</Currency>
<Description>itemdescription</Description>
<ListingDuration>FixedPriceItem</ListingDuration>
<Location>SanJose, CA</Location>
<Site>US</Site>
<ConditionID>2500</ConditionID>
<PrimaryCategory>
<CategoryID>11211</CategoryID>
</PrimaryCategory>
<Quantity>10</Quantity>
<Title>Itemtitle</Title>
<ShippingDetails>
<ShippingServiceOptions>--</ShippingServiceOptions>
</ShippingDetails>
</Item>
<RequesterCredentials>
<eBayAuthToken>token</eBayAuthToken>
</RequesterCredentials>
</AddItemRequest>
Question
Seller is approved for eBay Refurbished Program but when listing/revising the item, user is getting the following error:
<Errors>
<ShortMessage>Seller is not eligible to use Refurbished Item Condition in this Category.</ShortMessage>
<LongMessage>Seller is not eligible to use Refurbished Item Condition in this Category.</LongMessage>
<ErrorCode>21920311</ErrorCode>
<SeverityCode>Error</SeverityCode>
<ErrorParameters ParamID="0">
<Value>11211</Value>
</ErrorParameters>
<ErrorClassification>RequestError</ErrorClassification>
</Errors>
Answer
There can be several reasons for the API failure with error 21920311. One of the reasons can be, the incorrect ConditionID value is specified in the request for the CategoryID.
You can look for the <ConditionID> container and check for condition id value that you are using in the request and make sure to not to use this value as 2500 <ConditionID>2500</ConditionID> in the request.
'Seller Refurbished' item condition (Condition ID 2500) is not the correct condition value. This item condition has been deprecated in some categories in multiple eBay marketplaces and been replaced by 'Excellent - Refurbished' (Condition ID 2010), 'Very Good - Refurbished' (Condition ID 2020), and 'Good - Refurbished' (Condition ID 2030).
For more information on the eBay Refurbished Program and item conditions, have a look here.