FACEKI BLAZE 3.0 Documentation
  • Getting Started
  • Older Documentation
  • Quick Guides
    • Image Guidelines
    • Workflow Setup
    • Verification Monitoring
    • API Credentials
    • Webhook Setup
  • Integrations
  • No Integration Option
    • Zero Integration (via a Link)
  • API Integration
    • Verification APIs
      • Authentication
      • Generate KYC Link
      • Perform KYC Verification
      • Fetch Records
      • Face Match API (💲)
      • Fetch PDF Report
  • Data Fields
    • Verification Data
      • EKYC Webhook Structure
    • Error Codes
  • Mobile SDK
    • React Native SDK / Plugin
    • iOS SDK
    • Android SDK
    • Flutter SDK
  • Web SDK
    • React
  • Need Help?
    • Whatsapp
    • Support
    • FAQ's
Powered by GitBook
On this page
  1. Data Fields
  2. Verification Data

EKYC Webhook Structure

PreviousVerification DataNextError Codes

Last updated 1 month ago

When the EKYC (Electronic Know Your Customer) process is completed, a webhook will be triggered with the results. The EKYC Webhook Response contains critical information about the status of the KYC request, as well as the user details involved.

{
    "requestId": "973f1bb2-c4a6-424c-ae61-d220202b0611",  
    "fullName": "JOHN",                 
    "status": "ACCEPTED",                                  
    "kycData": {}
}

Response Fields

  • requestId: A unique identifier for the specific KYC request. This ID can be used for tracking, logging, and troubleshooting.

  • fullName: The full name of the person undergoing the KYC verification.

  • status: Indicates the result of the KYC verification. Common values are:

    • ACCEPTED: The KYC process was successful.

    • DECLINED: The KYC process failed.

    • REVIEW: The KYC process need manual review.

  • kycData: This section will contain detailed information about the verified individual, including identity information, documents, and other relevant KYC data. For the full structure of kycData, refer to the detailed KYC data structure .

EKYC Update from Portal Webhook Response

The EKYC Update from Portal webhook is triggered when there is an update to the KYC status on the portal. This response contains updated information, including the new status of the KYC verification and details about the modification.

{
    "requestId": "da870610-2311-42c7-9d8b-85accb14b399",     // Unique identifier for the KYC request
    "fullName": "JOHN",              // Full name of the individual
    "status": "DECLINED",                                     // Updated status of the KYC verification (DECLINED/APPROVED)
    "modifiedByEmail": "example@example.com"             // Email address of the user who made the update
}

Response Fields

  • requestId: A unique identifier for the KYC request. This ID is used to track and correlate the update.

  • fullName: The full name of the individual whose KYC verification status has been updated.

  • status: The updated status of the KYC verification. The status could be:

    • APPROVED: The KYC process has been approved.

    • DECLINED: The KYC process has been declined.

    • REVIEW: The KYC status changed to review.

  • modifiedByEmail: The email address of the user who made the update or modification to the KYC status. This helps identify who is responsible for the status change.

Link