Skip to main content
Permanently delete a saved payment method from a beneficiary. This action is irreversible.
DELETE /beneficiaries/payment-methods/delete/{id}

Path parameters

id
number
required
The numeric ID of the beneficiary payment method to delete.
Deleting a payment method is permanent. If this method is referenced in any pending payouts, those payouts may be affected.
curl -X DELETE 'https://api.yativo.com/api/v1/beneficiaries/payment-methods/delete/101' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "status_code": 200,
  "message": "Payment method deleted successfully",
  "data": null
}