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 Status

GET
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/vkyc/status
📌
The VKYC Status endpoint allows you to retrieve the current verification status of a user’s VKYC (Video KYC / Virtual KYC) session. Using the referenceId generated during VKYC Link Generation, this endpoint returns real-time information about whether the user has completed, failed, or is still in progress with their KYC verification.
This endpoint is typically used when:
Your system needs to poll for VKYC results instead of relying on webhooks.

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/status?enKashCardId=EKCWLUAADN' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Cookie: _cfuvid=Cj.4oaZXDKTuJ1ZXA7W0rxS9CUoYv7bEBuNhumrJCMY-1752688206978-0.0.1.1-604800000; JSESSIONID=38E61DC82AAE5335E8653C1334B9962A'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enkashCardId": "EKCHUZJWZW",
        "kycStatus": "CREATED",
        "kycSubStatus": "CREATED"
    }
}
Modified at 2025-11-18 18:55:30
Previous
VKYC Link Generation
Next
Get Wallet Details
Built with