Enkash Developer Portal
Home
Home
Login
  1. Wallet Setup
  • Back to home
  • APIs - Wallet
  • KYC Status Handling Guide
  • T&C Acceptance Flow
  • Authentication
    • Auth Token
  • Wallet Setup
    • Create Wallet
      POST
    • Update Wallet Details
      PATCH
    • VKYC Link Generation
      GET
    • VKYC Status
      GET
  • Wallet Management
    • Add Money to Wallet
    • Wallet Top-Up from Balance
    • Wallet Funding Limit Validation
    • Generate Transaction OTP
    • Get Transaction Details
    • Get Wallet Balance
    • Get Wallet Details
  • Fund Transfers
    • Add Beneficiary
    • Search Beneficiaries
    • IMPS Fund Transfer
    • Wallet To Wallet Fund Transfer
    • Get Fund Transfer Status
  • Merchant Payments
    • Debit Wallet for Merchant Transaction
    • Merchant Settlement Status
  • Webhooks
    • Payment Notify Request
Home
Home
Login
  1. Wallet Setup

VKYC Link Generation

GET
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/vkyc/link
📌
This endpoint generates a secure, time-bound VKYC (Video KYC) link that allows a user to complete identity verification. The unique VKYC session can be shared via SMS, email, or shown within your application. Use this to onboard a user as a Full KYC wallet holder or to upgrade KYC level for access to full PPI limits.
Purpose
Create a VKYC session for a specific user.
Provide a secure, time-limited URL for completing identity verification, including video capture, document submission, and liveness checks.
Note: VKYC is only available between 10 AM TO 6 PM, Working Days

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/vkyc/link?enKashCardId=EKCHUZJWZW' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Cookie: _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=0358753FB975001E868ABA71D2AA2204'

Responses

🟢200Success
application/json
Body

Examples
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enkashCardId": "EKCHUZJWZW",
        "kycStatus": "EnumModel(name=MIN_KYC_VERIFIED, label=Min Kyc Verified, description=null)",
        "kycSubStatus": "EnumModel(name=VKYC_IN_PROGRESS, label=VKYC In Progress, description=null)",
        "kycLink": "https://investor-onboarding-preproduction.signzy.tech/encash_preprod/6811e8e00e53e2001c75059b/1b66af3a5ac0663e0ce927a63c0aad382da284599b18e8ebd78f3fd2a97f45de1154d88c232c98fe/eMain?ns=encash_preprod",
        "kycExpiryDays": 1
    }
}
🟠422Failure
Modified at 2025-12-24 16:53:31
Previous
Update Wallet Details
Next
VKYC Status
Built with