# Delete Beneficiary

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/beneficiary-detail/{beneficiaryId}:
    delete:
      summary: Delete Beneficiary
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to remove an existing beneficiary from your list of added
        beneficiaries in your EnKash payout account. This is useful for managing
        and maintaining an up-to-date list of payout recipients.

        :::
      operationId: deleteBeneficiaryDetail
      tags:
        - Payouts/APIs - Payout/Beneficiary
        - Beneficiary Detail Apis
      parameters:
        - name: beneficiaryId
          in: path
          description: It is the unique ID you create to identify the beneficiary.
          required: true
          example: ''
          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/ApplicationResponseVoid'
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Payouts/APIs - Payout/Beneficiary
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-8990267-run
components:
  schemas:
    ApplicationResponseVoid:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: object
          x-apidog-orders: []
          properties: {}
          x-apidog-ignore-properties: []
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
