Skip to main content
Delete a beneficiary and all their associated payment methods. This action is irreversible.
DELETE /beneficiaries/{beneficiary_id}

Path parameters

beneficiary_id
string
required
The UUID of the beneficiary to delete.
Deleting a beneficiary is permanent and cannot be undone. All associated payment methods will also be deleted.
curl -X DELETE 'https://api.yativo.com/api/v1/beneficiaries/ben-7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "status_code": 200,
  "message": "Beneficiary deleted successfully",
  "data": null
}