Enkash Developer Portal
Home
Home
Login
  1. Wallet Setup
  • Back to home
  • Wallet APIs
  • Authentication
    • Auth Token
  • Wallet Setup
    • Create Wallet
      POST
    • Update Wallet Details
      PATCH
    • VKYC Link Generation
      GET
    • VKYC Status
      GET
    • Get Wallet Details
      POST
  • Wallet Management
    • Load Money
    • Generate Transaction OTP
    • Get Transaction Details
    • Get Wallet Balance
    • Load Limit Check
  • Fund Transfers
    • Add Beneficiary
    • Search Beneficiaries
    • Fund Transfer
    • Wallet To Wallet Transfer
    • Get Fund Transfer Status
  • Merchant Payments
    • Initate Merchant Payment
    • Merchant Settlement
    • Settlement Status
  • Webhooks
    • Payment Notify Request
  1. Wallet Setup

VKYC Link Generation

GET
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/vkyc/link
📌
Generate a VKYC (Video KYC / Virtual KYC) link so a user can complete identity verification through a secure, time-bound flow. This endpoint issues a unique VKYC session that can be delivered to the user via SMS, email, or displayed inside your application. Use this when you need to onboard a user as a Full KYC wallet user or escalate KYC level for access full PPI limit.
Purpose
1.
Create a VKYC session for a specific user.
2.
Return a secure, time-limited URL where the user completes identity verification (video, document capture, liveness checks, etc.).
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-11-19 12:46:43
Previous
Update Wallet Details
Next
VKYC Status
Built with