# VKYC Status

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/vkyc/status:
    get:
      summary: VKYC Status
      deprecated: false
      description: >-
        :::highlight purple 📌

        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.

        :::
      tags:
        - Wallet/APIs - Wallet/Wallet Setup
      parameters:
        - name: enKashCardId
          in: query
          description: ''
          required: true
          example: EKCWLUAADN
          schema:
            type: string
        - name: partnerId
          in: header
          description: ''
          required: true
          example: CRM338L2H
          schema:
            type: string
        - name: Cookie
          in: header
          description: ''
          required: true
          example: >-
            _cfuvid=Cj.4oaZXDKTuJ1ZXA7W0rxS9CUoYv7bEBuNhumrJCMY-1752688206978-0.0.1.1-604800000;
            JSESSIONID=38E61DC82AAE5335E8653C1334B9962A
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  payload:
                    type: object
                    properties:
                      enkashCardId:
                        type: string
                        description: Wallet Id
                      kycStatus:
                        type: string
                        description: Kyc Status
                        x-apidog-mock: VERIFIED,PENDING,FAILED,MIN_KYC_VERIFIED,NOT_UPLOADED
                      kycSubStatus:
                        type: string
                        description: Kyc Sub Status
                        x-apidog-mock: VKYC_PENDING,,VERIFIED,REJECTED,REDO,PENDING,CREATED
                      kycLink:
                        type: string
                        x-apidog-mock: https://kyc.com
                        description: vkyc link
                      kycReason:
                        type: string
                        description: KYC action reason
                    required:
                      - enkashCardId
                      - kycStatus
                      - kycSubStatus
                      - kycLink
                    x-apidog-orders:
                      - enkashCardId
                      - kycStatus
                      - kycSubStatus
                      - kycLink
                      - kycReason
                required:
                  - code
                  - message
                  - payload
                x-apidog-orders:
                  - code
                  - message
                  - payload
              example:
                code: 0
                message: Success
                payload:
                  enkashCardId: EKCHUZJWZW
                  kycStatus: CREATED
                  kycSubStatus: CREATED
          headers: {}
          x-apidog-name: OK
      security:
        - bearer: []
      x-apidog-folder: Wallet/APIs - Wallet/Wallet Setup
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-19203986-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
