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

> Webhook notification sent when an account is unblocked

<Note>
  This webhook is sent when an account status has been successfully changed from BLOCKED to OPENED.
</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.unblocked`
</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 unblocked 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": "9f5a3c6b-7dae-44f8-ba2c-3c5e7f9a1b4d",
  "time": "2025-01-15T10:30:00Z",
  "correlationId": "e5daf8a7-3b6c-4ebf-d5a9-4c8b0f2e6a3d",
  "type": "account.unblocked",
  "data": {
    "accountId": "019cde43-1e85-7cb0-20ba-ce7b9caf4d6a",
    "partyId": "019cde43-1e85-7cb0-20ba-ce7b9caf4d6b"
  }
}
```
