Home
Find the answer to your question
Consider the following key points while listing an item in half.com.
<AttributeArray>
<Attribute attributeLabel="Condition">
<Value>
<ValueLiteral>Good</ValueLiteral>
</Value>
</Attribute>
</AttributeArray>
Here is the sample AddItem request to list an item on Half.com:
Sample request for half.com listing |
<?xml version="1.0" encoding="utf-8"?> <AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <RequesterCredentials> <eBayAuthToken>****</eBayAuthToken> </RequesterCredentials> <Item> <AttributeArray> <Attribute attributeLabel="Condition"> <Value> <ValueLiteral>Good</ValueLiteral> </Value> </Attribute> </AttributeArray> <Country>US</Country> <Currency>USD</Currency> <Description>description</Description> <ListingDuration>GTC</ListingDuration> <ListingType>Half</ListingType> <Location>San Jose</Location> <Quantity>6</Quantity> <StartPrice currencyID="USD">5</StartPrice> <ExternalProductID> <Value>9780439294829</Value> <Type>ISBN</Type> </ExternalProductID> </Item> </AddItemRequest> |