
This method permanently removes an item from your store.
| Request Method | API Endpoint URL |
|---|---|
| GET | http://www.toldya.com/api/ |
| Parameter | Data Type | Length | Notes |
|---|---|---|---|
| action | string | remove_item | |
| api_key | string | Your API key | |
| id | number | The id of the item you want to permanently remove. To get a list of your current items along with their ids, please see view_items |
Remove item with id 1234 from your store:
http://www.toldya.com/api/?api_key=xxx&action=remove_item&ids=1234
<toldyaapiresponse> <url>https://www.toldya.com/api/?api_key=xxx&action=remove_item&id=1234</url> <status>SUCCESS</status> <message>Item 1234 successfully removed.</message> </toldyaapiresponse>
| back to top |