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
  • VKYC Link Generation
    GET
  • VKYC Status
    GET
  • Add Beneficiary
    POST
  • Search Beneficiaries
    POST
  • Fund Transfer
    POST
  • Delete Beneficiary
    DELETE
  • Update Wallet Holder Details
    PATCH
  1. Home

Update Wallet Holder Details

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

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
partnerId
string 
required
Example:
CRM338L2H
Authorization
string 
required
Example:
Bearer hxtaSWH8zb5XrA71XDrgFu1uO50
Cookie
string 
required
Example:
JSESSIONID=526FAFE391FEC276549D84FEF5FC5BE7; JSESSIONID=B01764303CD3DEFC3C0699B3EF351505; _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0
Content-Type
string 
required
Example:
application/json
Body Params application/json
companyId
string 
required
cardAccountId
string 
required
enKashCardId
string 
required
email
string 
required
mobile
string 
required
specialDate
string 
required
address
string 
required
address2
string 
required
city
string 
required
state
string 
required
pincode
string 
required
pan
string 
required
Example
{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN"
}

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 PATCH 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer hxtaSWH8zb5XrA71XDrgFu1uO50' \
--header 'Cookie: JSESSIONID=526FAFE391FEC276549D84FEF5FC5BE7; JSESSIONID=B01764303CD3DEFC3C0699B3EF351505; _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN"
}'

Responses

🟢200OK
application/json
Body
code
integer 
required
message
string 
required
payload
object 
required
recordsCount
integer 
required
data
array [object {27}] 
required
Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "recordsCount": 1,
        "data": [
            {
                "enKashCardId": "EKCWLUAADN",
                "userId": "EK7PED2F",
                "cardAccountId": "CAC7975",
                "token": "2be39e6a01b846bf6fd",
                "maskedNumber": "2004 0260 XXXX 1111",
                "expiryMonth": "",
                "expiryYear": "",
                "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.00,
                "createdOn": "Jul 16, 2025 9:24:38 PM",
                "modifiedOn": "Jul 16, 2025 9:24:38 PM",
                "cardStatus": {
                    "name": "UL",
                    "label": "UnLocked"
                },
                "kycStatus": {
                    "name": "NOT_UPLOADED",
                    "label": "Not Uploaded"
                },
                "cardActivated": false,
                "binType": {
                    "name": "PREPAID",
                    "label": "Prepaid Card"
                },
                "loadAmount": 0.00,
                "companyId": "CEKQ08TRRG",
                "middleName": "",
            ]
        }
    ]
}
}
Modified at 2025-07-29 13:11:46
Previous
Delete Beneficiary
Built with