> ## 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.

# store.deleted

> Fired when a store is removed from Fire.

## Payload

```json theme={null}
{
  "event": {
    "id": "evt_abc124",
    "type": "store.deleted",
    "createdAt": "2025-01-15T15:00:00Z",
    "timezone": "America/Guayaquil"
  },
  "data": {
    "account": "1",
    "country": "6",
    "storeId": 805,
    "vendorId": 16,
    "storeChannels": [
      "0F049503-85CF-E511-80C6-000D3A3261F3"
    ]
  }
}
```

## Fields

### `data`

| Field           | Type      | Description                                         |
| --------------- | --------- | --------------------------------------------------- |
| `account`       | string    | Account identifier — required by downstream systems |
| `country`       | string    | Country identifier — required by downstream systems |
| `storeId`       | integer   | ID of the deleted store                             |
| `vendorId`      | integer   | Brand identifier                                    |
| `storeChannels` | string\[] | Channel UUIDs the store was associated with         |

## Usage

When your system receives this event, remove or deactivate the store in your downstream systems for each channel listed in `storeChannels`.

Unlike [`store.updated`](/en/webhook-reference/store-updated), this event is explicit — there is no ambiguity about whether the store should exist downstream.
