# Search Beneficiaries

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/beneficiary-detail/search:
    post:
      summary: Search Beneficiaries
      deprecated: false
      description: >-

        :::highlight purple 📌

        Retrieve and search registered beneficiaries to quickly find the
        required bank account for fund transfers.

        :::
      tags:
        - Wallet/APIs - Wallet/Fund Transfers
      parameters:
        - name: partnerId
          in: header
          description: ''
          required: true
          example: CRM338L2H
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: Bearer 4jm8W0Qn40M1zLvXiZvgGXbeo5A
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                cardAccountId:
                  type: string
                enKashCardId:
                  type: string
                beneficiaryIfsc:
                  type: string
                beneficiaryPhone:
                  type: string
              required:
                - cardAccountId
                - enKashCardId
                - beneficiaryIfsc
                - beneficiaryPhone
            example:
              cardAccountId: CAC7975
              enKashCardId: EKCWLUAADN
              beneficiaryIfsc: SBIN0000289
              beneficiaryPhone: '6000000129'
              beneficiaryName: ''
              beneficiaryAccountNumber: ''
              vpaHandle: ''
              beneficiaryEmail: ''
              nickName: ''
              offset: 0
              limit: 5000
      responses:
        '200':
          description: ''
          content:
            '*/*':
              schema:
                type: object
                properties: {}
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Wallet/APIs - Wallet/Fund Transfers
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-19534929-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
