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

# Webhook object structure

The table below shows the object structure of every webhook generated by the Fireblocks webhooks service.

| Field       | Type                          | Description                                                                                                |
| ----------- | ----------------------------- | ---------------------------------------------------------------------------------------------------------- |
| id          | UUID                          | Unique identifier of the object.                                                                           |
| url         | string (unique per workspace) | The URL of the webhook endpoint.                                                                           |
| description | string (nullable)             | A description of the webhook.                                                                              |
| events      | array of strings (enums)      | The list of events to enable for this endpoint. An asterisk \['\*'] indicates that all events are enabled. |
| status      | string (enum)                 | The webhook's current status. Can be enabled or disabled.                                                  |
| createdAt   | number                        | Time at which the object was created, measured in milliseconds since the Unix epoch.                       |
| updatedAt   | number                        | Time at which the object was updated, measured in milliseconds since the Unix epoch.                       |

## Webhook object structure example

```json theme={"system"}
{
    "id": "........-....-....-....-............",
    "url": "https://example.com",
    "description": "example",
    "events": [
        "transaction.created",
        "vault_account.asset.added"
    ],
    "status": "ENABLED",
    "createdAt": 1754229327599,
    "updatedAt": 1754229327599
}
```
