# Retrieve Bank Account Details

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/bankDetail/whitelist:
    get:
      summary: Retrieve Bank Account Details
      deprecated: false
      description: >-

        :::highlight purple 📌

        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.

        :::
      operationId: getWhitelistBankDetail
      tags:
        - Payouts/APIs - Payout/Bank Details
        - Bank Detail Apis
      parameters:
        - name: companyId
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ApplicationResponseListBankDetailWhitelistResponse
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Payouts/APIs - Payout/Bank Details
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-8990271-run
components:
  schemas:
    ApplicationResponseListBankDetailWhitelistResponse:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: array
          items:
            $ref: '#/components/schemas/BankDetailWhitelistResponse'
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    BankDetailWhitelistResponse:
      type: object
      properties:
        accountNumber:
          type: string
        bankDetailId:
          type: string
        ifsc:
          type: string
        bankName:
          type: string
        beneficiaryName:
          type: string
        whitelisted:
          type: boolean
        failureReason:
          type: string
        beneficiaryCode:
          type: string
        approved:
          type: boolean
        primaryBankDetail:
          type: boolean
      x-apidog-orders:
        - accountNumber
        - bankDetailId
        - ifsc
        - bankName
        - beneficiaryName
        - whitelisted
        - failureReason
        - beneficiaryCode
        - approved
        - primaryBankDetail
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
