KYC Completion Webhook
Business clients receive real-time notifications when KYC (Know Your Customer) verification is completed for one of their customers. This client webhook is triggered automatically when a customer's KYC status is updated to a completion status.
When is this webhook sent?
The kyc_completed webhook is sent when:
- A customer's KYC status is updated to
PASS,VERIFIED, orAPPROVED - The customer belongs to your business
- Your business API key has a webhook URL configured
Note: This webhook is only sent for completion statuses. Statuses like PENDING, IN_PROGRESS, FAIL, or REJECTED will not trigger this webhook.
Payload Schema
Payload Fields
KYC Status Values
The webhook is only sent when the KYC status is one of these completion values:
Other statuses like PENDING, IN_PROGRESS, FAIL, or REJECTED will not trigger this webhook.
Example Payloads
Example 1: KYC Passed
Example 2: KYC Verified
Example 3: KYC Approved
Important Notes
-
Completion Statuses Only: This webhook is only sent when KYC reaches a completion status (
PASS,VERIFIED, orAPPROVED). Intermediate or failure statuses do not trigger this webhook. -
Webhook Security: This webhook uses the same security mechanism as other business webhooks:
- Signed with HMAC-SHA256 using your API key's secret
- Includes
X-Transfaar-Signatureheader for verification - Same retry logic applies (up to 10 attempts with exponential backoff, only retries if response is not 200 OK)
-
Idempotency: You should implement idempotency handling in your webhook receiver. The same KYC completion event may be sent multiple times if retries occur, so use the
customer_idandtimestampcombination to deduplicate.