Enkash Developer Portal
Home
Home
Login
  1. Beneficiary
  • Back to home
  • Payout APIs
  • Encryption & Decryption Guide
    • Generate Authentication Token
  • Beneficiary
    • Add Beneficiary
      POST
    • Search Beneficiary
      POST
    • Delete Beneficiary
      DELETE
  • Transfer
    • Initiate Transfer
    • Initiate Batch Transfer
    • Search Payout Transfers
  • Bank Details
    • Retrieve Account Balance
    • Retrieve Bank Account Details
    • Add Funds to EnKash
    • Fetch Statement
  • Webhook
    • Create Webhook Configuration
    • Retrieve Webhook Data
  1. Beneficiary

Search Beneficiary

POST
/api/v0/beneficiary-detail/search
📌
Use this API to fetch the details of a specific beneficiary from your EnKash payout account.
You can search by providing any one of the supported parameters in the request. This allows you to quickly verify beneficiary information before initiating payouts or managing beneficiary records.
BeneficiarySearchRequest

Response will be array ofBeneficiary Response object
Beneficiary Response

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
{
    "request": "string"
}

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://test.your-api-server.com/api/v0/beneficiary-detail/search' \
--header 'clientId: CEKxxxxxxx' \
--header 'User-Agent;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "request": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": "string"
}
Modified at 2025-07-08 18:45:39
Previous
Add Beneficiary
Next
Delete Beneficiary
Built with