Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Wallet APIs
  • Auth Token
    POST
  • Create Wallet (with Full Details)
    POST
  • Create Wallet (with Minimum Details)
    POST
  • Generate OTP
    POST
  • Min KYC
    POST
  • Get Wallet Details
    POST
  • Update Wallet Holder Details
    PATCH
  • VKYC Link Generation
    GET
  • VKYC Status
    GET
  • Load Money Topup
    POST
  • Load Money Without PG
    POST
  • Get Transaction Details
    POST
  • Add Beneficiary
    POST
  • Search Beneficiaries
    POST
  • Fund Transfer
    POST
  • Delete Beneficiary
    DELETE
  1. Home

Create Wallet (with Full Details)

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/wallet
This endpoint allows you to add a new enKash wallet for a user using the provided user details.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "companyId": "CEKQ08TRRG",
    "cardAccountId": "CAC7975",
    "email": "[email protected]",
    "mobile": "6000091111",
    "title": "Mr",
    "firstName": "Kris",
    "lastName": "singh",
    "documents": [
        {
            "docType": "PAN",
            "docNo": "CPNPN9971R"
        }
    ],
    "specialDate": "02-09-2001",
    "address": "Flat 109, near Dmart",
    "address2": "Radha Chowk",
    "city": "Kota",
    "state": "Rajasthan",
    "pincode": "323307",
    "country": "India"
}

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/wallet' \
--header 'authorization: Bearer hxtaSWH8zb5XrA71XDrgFu1uO50' \
--header 'partnerId: CRM338L2H' \
--header 'Cookie: _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0' \
--header 'Content-Type: application/json' \
--data-raw '{
    "companyId": "CEKQ08TRRG",
    "cardAccountId": "CAC7975",
    "email": "[email protected]",
    "mobile": "6000091111",
    "title": "Mr",
    "firstName": "Kris",
    "lastName": "singh",
    "documents": [
        {
            "docType": "PAN",
            "docNo": "CPNPN9971R"
        }
    ],
    "specialDate": "02-09-2001",
    "address": "Flat 109, near Dmart",
    "address2": "Radha Chowk",
    "city": "Kota",
    "state": "Rajasthan",
    "pincode": "323307",
    "country": "India"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enKashCardId": "EKCWLUAADN",
        "userId": "EK7PED2F",
        "cardAccountId": "CAC7975",
    ]
        "email": "[email protected]",
    "mobile": "6000091111",
    "title": "Mr",
    "firstName": "Kris",
    "lastName": "Singh",
    "gender": "M",
    "specialDate": "02-09-2001",
    "address": "cda block",
    "address2": "ab colony",
    "city": "kota",
    "state": "Rajasthan",
    "country": "India",
    "pincode": "323307",
    "otbBalance": 0,
    "cardStatus": {
        "name": "UL",
        "label": "UnLocked"
    },
    "kycStatus": {
        "name": "NOT_UPLOADED",
        "label": "Not Uploaded"
    },
    "benefitTemplateId" : "BENT68835L6WB",
    "enkashCardBenefitId" : "EKCBY22EXYH",
    "subWalletBalance" : "0"
}
}
Modified at 2025-08-06 16:42:07
Previous
Auth Token
Next
Create Wallet (with Minimum Details)
Built with