Enkash Developer Portal
Home
Home
Login
  1. Reloadable Prepaid Cards
  • Back to home
  • APIs - Prepaid Card
  • Encryption & Decryption Guide
  • Reloadable Prepaid Cards
    • Auth Token
      POST
    • Create Reloadable Prepaid Card
      POST
    • Set Card PIN
      POST
    • Generate OTP
      POST
    • View Card Details
      POST
    • VKYC Link Generation
      GET
    • VKYC Status
      GET
    • View Card CVV
      POST
    • Update Card Limits & Controls
      POST
    • Get Card Limits & Controls
      POST
    • Order Physical Card
      POST
    • Get Card Balance
      POST
    • Load Money from Balance
      POST
    • Request Card Replacement
      POST
    • Block Card
      POST
    • Get Transaction Details
      POST
    • Get All Transaction Details
      POST
  • Non Reloadable Gift Cards
    • Auth Token
    • Create Non Reloadable Gift Card
    • Set Card PIN
    • Generate OTP
    • View Card Details
    • View Card CVV
    • Order Physical Card
    • Get Card Balance
    • Get Transaction Details
    • Get All Transaction details
Home
Home
Login
  1. Reloadable Prepaid Cards

VKYC Status

GET
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/vkyc/status
📌
The VKYC Status endpoint lets you check the current status of a user’s VKYC (Video KYC) session using the reference ID generated during link creation. It returns real-time updates on whether the verification is completed, failed, or still in progress.
Use this endpoint when your system needs to actively check 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-12-24 17:01:34
Previous
VKYC Link Generation
Next
View Card CVV
Built with