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

Search Beneficiaries

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

Request

Header Params
partnerId
string 
required
Example:
CRM338L2H
Authorization
string 
required
Example:
Bearer FpxZseDuSA8bwY0NTTUJfCJ6xKQ
Content-Type
string 
required
Example:
application/json
Body Params application/json
cardAccountId
string 
required
enKashCardId
string 
required
beneficiaryIfsc
string 
required
beneficiaryPhone
string 
required
Example
{
  "cardAccountId": "CAC7975",
  "enKashCardId": "EKCWLUAADN",
  "beneficiaryIfsc": "SBIN0000289",
  "beneficiaryPhone": "6000000129",
  "beneficiaryName": "",
  "beneficiaryAccountNumber": "",
  "vpaHandle": "",
  "beneficiaryEmail": "",
  "nickName": "",
  "offset": 0,
  "limit": 5000
}

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/search' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer FpxZseDuSA8bwY0NTTUJfCJ6xKQ' \
--header 'Content-Type: application/json' \
--data-raw '{
  "cardAccountId": "CAC7975",
  "enKashCardId": "EKCWLUAADN",
  "beneficiaryIfsc": "SBIN0000289",
  "beneficiaryPhone": "6000000129",
  "beneficiaryName": "",
  "beneficiaryAccountNumber": "",
  "vpaHandle": "",
  "beneficiaryEmail": "",
  "nickName": "",
  "offset": 0,
  "limit": 5000
}'

Responses

🟢200OK
text/plain
Body
object {0}
Example
{
    "code": 0,
    "message": "Success",
    "payload": [
        {
            "enkashBeneCode": "BCBA4B4M6X",
            "beneficiaryId": "CBC32118205J3W",
            "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": 43,
                    "nano": 0
                }
            },
            "modifiedOn": {
                "date": {
                    "year": 2025,
                    "month": 7,
                    "day": 29
                },
                "time": {
                    "hour": 11,
                    "minute": 8,
                    "second": 43,
                    "nano": 0
                }
            },
            "bankName": "SBI",
            "accountType": "SAVING"
        }
    ]
}
Modified at 2025-07-29 13:05:11
Previous
Add Beneficiary
Next
Fund Transfer
Built with