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

# Event object

An Event represents an occurrence within the Fintoc system, capturing important changes or actions that happen to your linked accounts and connections.

```json theme={null}
{
  "id": "evt_a4xK32BanKWYn",
  "object": "event",
  "created_at": "2020-04-22T21:10:19.254Z",
  "data": {
    "id": "link_l6J0WLYbiABXxABN",
    "object": "link",
    "accounts": [
      {
        "id": "acc_XqNDRKQeTnKvpnW5",
        "object": "account",
        "balance": {
          "available": 51340323,
          "current": 51340323,
          "limit": 51340323
        },
        "currency": "CLP",
        "holder_id": "770208157",
        "holder_name": "Galarza Saiz S.A. SpA",
        "name": "Cuenta Corriente",
        "number": "746326042",
        "official_name": "Cuenta Corriente",
        "refreshed_at": null,
        "type": "checking_account"
      }
    ],
    "created_at": "2020-12-27T19:06:45.986Z",
    "holder_id": "770208157",
    "holder_type": "business",
    "institution": {
      "id": "cl_banco_de_chile",
      "country": "cl",
      "name": "Banco de Chile"
    },
    "link_token": "link_l6J0WLYbiABXxABN_token_8ZX8ZKCctdRasshzUrWFNn9W",
    "mode": "test",
    "username": "416148503"
  },
  "mode": "test",
  "type": "link.created"
}
```

| Attribute    | Type     | Description                                                                                 |
| :----------- | :------- | :------------------------------------------------------------------------------------------ |
| `id`         | `string` | Unique identifier for the Event                                                             |
| `object`     | `string` | Identifier for the type of object. Its value for `Events` will always correspond to `event` |
| `created_at` | `string` | Event's creation date, using ISO 8601                                                       |
| `data`       | `object` | Object with the data associated to the event                                                |
| `mode`       | `string` | Indicates whether the Event is in `live` mode or in `test` mode (for the sandbox)           |
| `type`       | `string` | Event type                                                                                  |
