Cardholder Events
CARDHOLDER_KYC_APPROVED
Fired when a cardholder’s KYC verification is approved. Cards can now be issued to this cardholder.
WEBHOOK
Fires when a cardholder’s identity verification is approved. This is the signal to unlock card issuance in your platform. Cards cannot be issued until
For the full event group documentation see Cardholder Events.
kycStatus is APPROVED.
This is one of the most important events to subscribe to — use it instead of polling GET /cardholders/{id}.
Event Type
Payload
Payload Fields
| Field | Type | Description |
|---|---|---|
cardholderId | string | The cardholder whose KYC was approved |
kycStatus | string | Always APPROVED |
kycVerifiedAt | string | ISO 8601 timestamp of approval |
What To Do When You Receive This Event
- Mark the cardholder as verified in your system
- Unlock card issuance for this cardholder in your UI
- Optionally notify the cardholder that they can now receive a card
Example Handler
Node.js
Authorizations
API key from the FYATU CaaS portal. Pass as Authorization: Bearer <key>.
Body
application/json
Response
200
Acknowledge the event.

