# Add Beneficiary

## OpenAPI Specification

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

        :::highlight purple 📌

        To initiate payouts to your customers, you first need to add them as
        beneficiaries to your EnKash Payments account. When adding a
        beneficiary, include their bank account details or UPI ID to enable
        instant transfers. This ensures that payouts are processed smoothly and
        securely to your customers’ preferred payment methods

        :::


        <DataSchema id="2796460" />


        <DataSchema id="2796942" />
      operationId: createBeneficiaryDetail
      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:
                type: object
                properties:
                  response_code:
                    type: integer
                    format: int32
                  response_message:
                    type: string
                  payload:
                    type: string
                    description: Excrytped response payload
                x-apidog-refs: {}
                x-apidog-orders:
                  - response_code
                  - response_message
                  - payload
                x-apidog-ignore-properties: []
          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-8990265-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: ''
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
