Path parameters
The UUID of the beneficiary to delete.
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
}
Permanently delete a beneficiary record
DELETE /beneficiaries/{beneficiary_id}
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
}