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

# kyb.approved

> Sent when KYB verification is successfully approved.

The `kyb.approved` event is sent when a business has **successfully passed KYB verification**.

This indicates the associated business entity is verified and eligible to access KYB-restricted features.

***

## Example Payload

```json theme={null}
{
  "event": "kyb.approved",
  "id": "e61a0dbd-22b3-4ff2-9da1-bd4097ed273c",
  "data": {
    "user_id": "e61a0dbd-22b3-4ff2-9da1-bd4097ed273c",
    "kyb_status": "approved"
  },
  "eventGeneratedTime": 1756729948.128641
}
```

***

## Data Fields

<ResponseField name="user_id" type="string">
  Unique identifier of the business owner or associated user.
</ResponseField>

<ResponseField name="kyb_status" type="string">
  Final KYB status. Always <code>approved</code> for this event.
</ResponseField>

***

## Handling the Event

Use this event to:

* Enable business and merchant-level features
* Allow payments, settlements, and withdrawals
* Update business compliance state
* Record KYB approval for auditing and reporting

***

## Related Events

* [kyb.rejected](/webhooks/events/kyb/rejected)
* [kyb.deleted](/webhooks/events/kyb/deleted)
