Skip to main content

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.

The kyc.completed event is sent when a user’s KYC process has fully completed. This is a rare event and is functionally similar to a successful verification outcome. The user should be treated as having completed all required KYC steps.

Example Payload

{
  "event": "kyc.completed",
  "id": "e61a0dbd-22b3-4ff2-9da1-bd4097ed273c",
  "data": {
    "user_id": "e61a0dbd-22b3-4ff2-9da1-bd4097ed273c",
    "kyc_status": "completed"
  },
  "eventGeneratedTime": 1756729948.128641
}

Data Fields

user_id
string
Unique identifier of the user whose KYC process completed.
kyc_status
string
Final KYC status. Always completed for this event.

Handling the Event

Use this event to:
  • Treat the user as fully KYC verified
  • Enable all KYC-restricted features
  • Synchronize final verification state across systems
  • Record completion for compliance and auditing