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