# Search Beneficiary

## OpenAPI Specification

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

        :::highlight purple 📌

        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.

        :::


        <DataSchema id="2796943" />


        Response will be array of`Beneficiary Response` object

        <DataSchema id="2796942" />
      operationId: searchBeneficiaryDetail
      tags:
        - Payouts/APIs - Payout/Beneficiary
        - Beneficiary Detail Apis
      parameters:
        - name: clientId
          in: header
          description: ''
          required: true
          example: CEKxxxxxxx
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationResponseString'
          headers: {}
          x-apidog-name: OK
      security:
        - bearer: []
      x-apidog-folder: Payouts/APIs - Payout/Beneficiary
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-8990266-run
components:
  schemas:
    Request:
      required:
        - request
      type: object
      properties:
        request:
          type: string
          description: Encrypted request payload string
      x-apidog-orders:
        - request
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    ApplicationResponseString:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: string
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
