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

Retrieve Bank Account Details

GET
/api/v0/bankDetail/whitelist
📌
Use this API to get the details of your whitelisted bank account linked to your EnKash payout account. This allows you to verify the bank account information from which you can transfer money to the EnKash VA.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

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 GET 'https://test.your-api-server.com/api/v0/bankDetail/whitelist?companyId' \
--header 'User-Agent;' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": [
        {
            "accountNumber": "string",
            "bankDetailId": "string",
            "ifsc": "string",
            "bankName": "string",
            "beneficiaryName": "string",
            "whitelisted": true,
            "failureReason": "string",
            "beneficiaryCode": "string",
            "approved": true,
            "primaryBankDetail": true
        }
    ]
}
Modified at 2025-07-08 18:58:45
Previous
Retrieve Account Balance
Next
Add Funds to EnKash
Built with