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

# Webhooks events

# Event Types

All event types you can subscribe to when registering a webhook.

***

## Account events

| Type                       | Description          |
| -------------------------- | -------------------- |
| `account.updated`          | Profile was modified |
| `account.password_changed` | Password was changed |
| `account.deleted`          | Account was deleted  |

***

## Wallet events

| Type                     | Description                                 |
| ------------------------ | ------------------------------------------- |
| `wallet.created`         | A new wallet was created                    |
| `wallet.updated`         | Wallet name or status changed               |
| `wallet.balance_changed` | Balance changed after a completed operation |

***

## Operation events

| Type                  | Description                     |
| --------------------- | ------------------------------- |
| `operation.created`   | A new operation was recorded    |
| `operation.completed` | Operation moved to `completed`  |
| `operation.failed`    | Operation moved to `failed`     |
| `operation.updated`   | Mutable fields were changed     |
| `operation.deleted`   | A pending operation was deleted |

***

## Example payload — `operation.completed`

```json theme={null}
{
  "id": "evt_01hz9g4k1m3p7r8s",
  "type": "operation.completed",
  "created_at": "2024-09-15T10:30:05Z",
  "data": {
    "object": {
      "id": "op_01hz8f3k9m2p6q7r",
      "wallet_id": "wal_01hy2c4n8j5r3d6e",
      "type": "expense",
      "status": "completed",
      "amount": 150000,
      "asset": "BTC",
      "description": "Hardware wallet purchase",
      "created_at": "2024-09-15T10:30:00Z",
      "completed_at": "2024-09-15T10:30:05Z"
    }
  }
}
```
