Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Wallet APIs
  • Auth Token
    POST
  • Create Wallet
    POST
  • Generate OTP
    POST
  • Min KYC
    POST
  • Get Wallet Details
    POST
  • VKYC
    GET
  • VKYC Status
    GET
  1. Home

Min KYC

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/viewCard

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
authorization
string 
required
Example:
Bearer j8o6WSg6p6W7uOzycG6Yewzn06E
partnerId
string 
required
Example:
CRMAXZ11Q
Content-Type
string 
required
Example:
application/json
Cookie
string 
required
Example:
_cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=0358753FB975001E868ABA71D2AA2204
Body Params application/json
cardAccountId
string 
required
companyId
string 
required
enKashCardId
string 
required
otpMedium
string 
required
otpRequestId
string 
required
otp
string 
required
Example
{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN",
    "otpMedium": "MOBILE",
    "otpRequestId": "EKFR3XMAMZ",
    "otp": "305683"
}

Request 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 POST 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/viewCard' \
--header 'authorization: Bearer j8o6WSg6p6W7uOzycG6Yewzn06E' \
--header 'partnerId: CRMAXZ11Q' \
--header 'Cookie: _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=0358753FB975001E868ABA71D2AA2204' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN",
    "otpMedium": "MOBILE",
    "otpRequestId": "EKFR3XMAMZ",
    "otp": "305683"
}'

Responses

🟢200OK
application/json
Body
code
integer 
required
message
string 
required
Example
{
    "code": 0,
    "message": "Success"
}
Modified at 2025-07-16 17:07:58
Previous
Generate OTP
Next
Get Wallet Details
Built with