> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fire.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# channel.deleted

> Fired when a sales channel is removed from Fire.

Fire emits this event when a channel is permanently removed. Your system should deactivate or remove the channel from its local mapping and stop routing any events or orders to it.

## Payload

```json theme={null}
{
  "event": {
    "id": "evt_abc201",
    "type": "channel.deleted",
    "createdAt": "2025-01-21T09:00:00Z",
    "timezone": "America/Guayaquil"
  },
  "data": {
    "account": "1",
    "country": "6",
    "vendorId": 16,
    "channelId": "CH-IFOOD-001",
    "code": "IFOOD"
  }
}
```

## Fields

### `data`

| Field       | Type    | Description                                         |
| ----------- | ------- | --------------------------------------------------- |
| `account`   | string  | Account identifier — required by downstream systems |
| `country`   | string  | Country identifier — required by downstream systems |
| `vendorId`  | integer | Brand identifier                                    |
| `channelId` | string  | ID of the deleted channel                           |
| `code`      | string  | Short code of the deleted channel                   |

## Usage

When your system receives this event, remove the channel from your local mapping and stop routing publication events or order injections to it. Any in-flight orders associated with this channel should be completed but no new orders should be injected.

Unlike [`channel.updated`](/en/webhook-reference/channel-updated) with `active: "INACTIVE"`, this event is explicit — the channel no longer exists in Fire.
