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

> Se dispara cuando una tienda es removida de Fire.

## Payload

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

## Campos

### `data`

| Campo           | Tipo      | Descripción                                                 |
| --------------- | --------- | ----------------------------------------------------------- |
| `account`       | string    | Identificador de cuenta — requerido por sistemas downstream |
| `country`       | string    | Identificador de país — requerido por sistemas downstream   |
| `storeId`       | integer   | ID de la tienda eliminada                                   |
| `vendorId`      | integer   | Identificador de la marca                                   |
| `storeChannels` | string\[] | UUIDs de canal con los que la tienda estaba asociada        |

## Uso

Cuando tu sistema reciba este evento, elimina o desactiva la tienda en tus sistemas downstream para cada canal listado en `storeChannels`.

A diferencia de [`store.updated`](/es/webhook-reference/store-updated), este evento es explícito — no hay ambigüedad sobre si la tienda debe existir downstream.
