Enkash Developer Portal
Home
Home
Login
  1. Fund Transfers
  • Back to home
  • Wallet APIs
  • Authentication
    • Auth Token
  • Wallet Setup
    • Create Wallet
    • Update Wallet Details
    • VKYC Link Generation
    • VKYC Status
    • Get Wallet Details
  • Wallet Management
    • Load Money
    • Generate Transaction OTP
    • Get Transaction Details
    • Get Wallet Balance
    • Load Limit Check
  • Fund Transfers
    • Add Beneficiary
      POST
    • Search Beneficiaries
      POST
    • Fund Transfer
      POST
    • Wallet To Wallet Transfer
      POST
    • Get Fund Transfer Status
      GET
  • Merchant Payments
    • Initate Merchant Payment
    • Merchant Settlement
    • Settlement Status
  • Webhooks
    • Payment Notify Request
  1. Fund Transfers

Add Beneficiary

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

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
{
  "beneficiaryName": "Anurag",
  "beneficiaryAccountNumber": "347982231219",
  "beneficiaryIfsc": "SBIN0000289",
  "beneficiaryEmail": "[email protected]",
  "beneficiaryPhone": "6000000129",
  "bankName": "SBI",
  "accountType": "SAVING",
  "aliasName": "Anurag",
  "customerRef": "EKCWLUAADN",
  "cardAccountId": "CAC7975",
  "enKashCardId": "EKCWLUAADN",
  "otpMedium": "MOBILE",
  "otp": "968846",
  "otpReferenceId": "EKR1Q285XK"
}

Request Code 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 'Cookie;' \
--header 'Authorization: Bearer <token>' \
--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",
  "otpMedium": "MOBILE",
  "otp": "968846",
  "otpReferenceId": "EKR1Q285XK"
}'

Responses

🟢200OK
text/plain
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enkashBeneCode": "BCN5AXVHEC",
        "beneficiaryDetailId": "BED070746144FB",
        "beneficiaryAccountNumber": "059801573952",
        "beneficiaryIfsc": "ICIC0000594",
        "beneficiaryName": "MAN",
        "createdOn": {
            "date": {
                "year": 2025,
                "month": 8,
                "day": 26
            },
            "time": {
                "hour": 17,
                "minute": 52,
                "second": 53,
                "nano": 202000000
            }
        },
        "modifiedOn": {
            "date": {
                "year": 2025,
                "month": 8,
                "day": 26
            },
            "time": {
                "hour": 17,
                "minute": 52,
                "second": 53,
                "nano": 202000000
            }
        },
        "bankName": "ICICII"
    }
}
Modified at 2025-11-26 06:07:32
Previous
Load Limit Check
Next
Search Beneficiaries
Built with