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

# link.deleted

> Receive the final link state when a short link is deleted.

Biqli sends `link.deleted` when a short link is deleted. The event name is the deletion signal, and `data` contains the link's final state at deletion time.

## Example payload

```json theme={null}
{
  "id": "evt_01m2exampledeleted0000000000",
  "event": "link.deleted",
  "createdAt": "2026-09-14T15:00:00+00:00",
  "data": {
    "id": "biq_lnk_01M2EXAMPLE00000000000000",
    "externalId": "campaign_1842",
    "name": "Autumn campaign",
    "url": "https://example.com/autumn-sale",
    "shortUrl": "https://go.example.com/autumn-sale",
    "key": "autumn-sale",
    "description": "Updated autumn launch",
    "active": true,
    "expiresAt": "2026-12-01T00:00:00+00:00",
    "workspaceId": "biq_ws_01M2EXAMPLE000000000000000",
    "createdAt": "2026-09-14T13:40:23+00:00",
    "updatedAt": "2026-09-14T14:04:59+00:00"
  }
}
```

## Recommended handling

Mark or remove the local link identified by `data.id`. Do not wait for `data.active` to become `false`; the authoritative deletion signal is `event === "link.deleted"`.

Biqli can preserve a deleted link snapshot for historical conversion reporting. A later lead or sale webhook may therefore contain the historical link with `deleted: true` even though the link resource itself no longer exists.
