API
ReferenceSelling

Delist

POST
/public/v1/delist

Takes your listings off the market and returns their items to your backpack. Send listing_id for one, or a listing_ids array of up to 50 — in bulk each is removed in its own transaction and every id comes back in results with ok and any error, in the order you sent them. The v1 equivalent was ISales/ReturnItems.

AuthorizationBearer <token>

API key generated from your account settings on the website. Send as Authorization: Bearer csd_....

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/public/v1/delist" \  -H "Content-Type: application/json" \  -d '{    "listing_id": 1  }'
{  "listing_id": 1}