> ## 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 Blocked

> Webhook notification sent when an account is successfully blocked

<Note>
  This webhook is sent when an account status has been successfully changed to BLOCKED.
</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="correlationId" type="string">
  Identifier to correlate the request with the response. Present when provided in the original request.
</ParamField>

<ParamField body="type" type="string" required>
  The type of event. Value: `account.blocked`
</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 blocked account
</ParamField>

<ParamField body="data.partyId" type="string (UUID)" required>
  Unique identifier of the party that owns the account
</ParamField>

## Request Example

```json theme={null}
{
  "id": "a3f8e2b1-5c7d-4e9f-b8a2-1d4c6e9f0a3b",
  "time": "2025-01-15T10:30:00Z",
  "correlationId": "550e8400-e29b-41d4-a716-446655440000",
  "type": "account.blocked",
  "data": {
    "accountId": "019bdb2a-960f-789d-8955-21720e6cdeed",
    "partyId": "019bdb2a-960f-789d-8955-21720e6cdeef"
  }
}
```
