> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Payment Method

> Remove a saved payment method from a beneficiary

Permanently delete a saved payment method. This action is irreversible.

```
DELETE /v1/beneficiaries/payment-methods/delete/{id}
```

## Path parameters

<ParamField path="id" type="string" required>
  The ID of the beneficiary payment method to delete.
</ParamField>

<Warning>
  Deleting a payment method is permanent and cannot be undone.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.yativo.com/api/v1/beneficiaries/payment-methods/delete/pm-a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "message": "Record deleted successfully"
  }
  ```
</ResponseExample>
