Home
Find the answer to your question
How do I specify the condition of my item when I list it using the API?
Several categories are requiring that you specify the new, more granular Item Condition values using the new ConditionID field.
To find the right condition ID to use in your listing:
Enabled
or Required
for the category.Here is a snippet from the AddFixedPriceItem API request that illustrates listing an item with Condition 'New'
<?xml version="1.0" encoding="utf-8"?>
<AddFixedPriceItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>ABC...123</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Item>
...
<CategoryID>94894</Category>
<ConditionID>1000</ConditionID>
...
</Item>
</AddFixedPriceItemRequest>
Please refer to the following AddFixedPriceItem API document for details.
1. AddFixedPriceItemRequest Item.ConditionID
2. AddFixedPriceItem Request Sample