# `channel.listing.delete` Delete listings at the marketplace (irreversible; provider rules apply, e.g. archived > 1 day and not locked). - **method + path**: `POST /v1/channel/{ext}/listings/delete` - **TR label**: Pazaryeri listelemesi silindi - **auth**: authenticated · scope gates: any of `admin`, `catalog:write` — “Katalog yazma yetkisi gerekli” - **agentPolicy**: `propose` — a live mutation — an Ajan token's call is recorded into its open proposal (202 `proposed: true`); a Geliştirici token executes it directly. - **effects**: `provider`, `db` - **idempotency**: server — the platform derives the key - **wraps**: [`channel.listing.set`](/reference/commands/channel.listing.set) Machine-readable body schema: [/schemas/routes/channel.listing.delete.json](/schemas/routes/channel.listing.delete.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "listingIds": { "minItems": 1, "maxItems": 100, "type": "array", "items": { "type": "string", "pattern": "^lst_[0-9A-HJKMNP-TV-Z]{26}$" } } }, "required": [ "listingIds" ], "additionalProperties": false } ```