Skip to main content
Published: December 17 2008, 10:56:00 AMUpdated: August 08 2022, 6:53:18 AM

Question

What does the ItemSuspended payload look like?

Answer

Scenario

I am a seller and I recently received a email infrom eBay stating that eBay has taken down a listing due to it being adult material and being miscategorized. I also see an alert about the same in the My Messages section of my eBay account.

When I try do a GetItem call on this Item I receive an error code 17 - Item "<ItemID>" is invalid, not activated, or no longer in our database, or an Live Auction item.  If I do an AddItem again for this SKU, the item is brought down again by eBay Trust & Safety.  According to eBay Trust & Safety, violation of this or other eBay policies may result in forfeit of eBay fees on cancelled listings, limits on account privileges and account suspension.

If an item is ended by eBay because the item is miscategorized, is there any way for me to know programatically so that I won't list the item again?

 

Solution

If you subscribe to platform notifications and the ItemSuspended notification, you will get a notification when the item is suspended. See below for a sample payload of the ItemSuspended notification

<?xml version="1.0" encoding="UTF-8" ?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/' >
<SOAP-ENV:Header>
<ebay:NotificationSignature xmlns:ebay='http://developer.ebay.com/2001/schema' >abde27d4ce600dc4445b46bf3f69124c</ebay:NotificationSignature>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<Notification xmlns='http://developer.ebay.com/2001/schema' >
<Event>
<EventTime>
<EBayTime>2022-08-08T11:52:42.571Z</EBayTime>
</EventTime>
<ItemSuspended>
<ItemId>150310666655</ItemId>
</ItemSuspended>
</Event>
</Notification>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

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