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

# Account Balance Updated

> Webhook notification sent when an account balance is updated

<Note>
  This webhook is sent when an account balance has been updated.
</Note>

## Webhook Structure

<ParamField body="id" type="string (UUID)" required>
  Unique identifier for this event
</ParamField>

<ParamField body="time" type="string (ISO 8601)" required>
  Timestamp of when the event occurred
</ParamField>

<ParamField body="type" type="string" required>
  The type of event. Value: `account.balance-updated`
</ParamField>

<ParamField body="data" type="object" required>
  The event data containing the details below
</ParamField>

### Data Fields

<ParamField body="data.accountId" type="string (UUID)" required>
  Unique identifier of the account whose balance was updated
</ParamField>

<ParamField body="data.balances" type="array" required>
  List of account balances

  <Expandable title="Balance object properties">
    <ParamField body="availableBalance" type="integer" required>
      Available balance in minor units (cents)
    </ParamField>

    <ParamField body="currency" type="string" required>
      Currency code (ISO 4217). Available values: `EUR`
    </ParamField>
  </Expandable>
</ParamField>

## Request Example

```json theme={null}
{
  "id": "019cfb29-433e-7c76-9744-2557d47f46e0",
  "time": "2025-01-15T10:30:00Z",
  "type": "account.balance-updated",
  "data": {
    "accountId": "019cde45-3aa7-7ed2-42dc-ea9dbef6f8c0",
    "balances": [
      {
        "availableBalance": 1500000,
        "currency": "EUR"
      }
    ]
  }
}
```
