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

Add Beneficiary

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/beneficiary-detail

Request

Header Params
partnerId
string 
required
Example:
CRM338L2H
Authorization
string 
required
Example:
Bearer b3f7z20YrIFAnkG9wmvEu3yj72k
Content-Type
string 
required
Example:
application/json
Cookie
string 
optional
Body Params application/json
beneficiaryName
string 
required
beneficiaryAccountNumber
string 
required
beneficiaryIfsc
string 
required
beneficiaryEmail
string 
required
beneficiaryPhone
string 
required
bankName
string 
required
accountType
string 
required
aliasName
string 
required
customerRef
string 
required
cardAccountId
string 
required
enKashCardId
string 
required
Example
{
  "beneficiaryName": "Anurag",
  "beneficiaryAccountNumber": "347982231219",
  "beneficiaryIfsc": "SBIN0000289",
  "beneficiaryEmail": "[email protected]",
  "beneficiaryPhone": "6000000129",
  "bankName": "SBI",
  "accountType": "SAVING",
  "aliasName": "Anurag",
  "customerRef": "EKCWLUAADN",
  "cardAccountId": "CAC7975",
  "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 POST 'https://pay-en-uat.enkash.in/api/v0/partner/beneficiary-detail' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer b3f7z20YrIFAnkG9wmvEu3yj72k' \
--header 'Cookie;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "beneficiaryName": "Anurag",
  "beneficiaryAccountNumber": "347982231219",
  "beneficiaryIfsc": "SBIN0000289",
  "beneficiaryEmail": "[email protected]",
  "beneficiaryPhone": "6000000129",
  "bankName": "SBI",
  "accountType": "SAVING",
  "aliasName": "Anurag",
  "customerRef": "EKCWLUAADN",
  "cardAccountId": "CAC7975",
  "enKashCardId": "EKCWLUAADN"
}'

Responses

🟢200OK
text/plain
Body
object {0}
Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enkashBeneCode": "BCBA4B4M6X",
        "beneficiaryAccountNumber": "34798242329",
        "beneficiaryIfsc": "SBIN0000289",
        "beneficiaryName": "Anurag",
        "beneficiaryEmail": "[email protected]",
        "beneficiaryPhone": "6000000129",
        "createdOn": {
            "date": {
                "year": 2025,
                "month": 7,
                "day": 29
            },
            "time": {
                "hour": 11,
                "minute": 8,
                "second": 42,
                "nano": 759000000
            }
        },
        "modifiedOn": {
            "date": {
                "year": 2025,
                "month": 7,
                "day": 29
            },
            "time": {
                "hour": 11,
                "minute": 8,
                "second": 42,
                "nano": 759000000
            }
        },
        "bankName": "SBI",
        "accountType": "SAVING"
    }
}
Modified at 2025-07-29 12:49:54
Previous
VKYC Status
Next
Search Beneficiaries
Built with