Delete withdrawal
This endpoint allows users to delete a household saving withdrawal.
Path parameters
-
The HouseholdGUID of the client.
-
The SavingsGUID for the withdrawal you want to delete.
-
The WithdrawalGUID you want to delete.
DELETE
/api/v2/household/{HouseholdGUID}/savings/{SavingsGUID}/withdrawals/{WithdrawalGUID}
curl \
-X DELETE https://api.fincalc.co.uk/api/v2/household/{HouseholdGUID}/savings/{SavingsGUID}/withdrawals/{WithdrawalGUID} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"message": "Withdrawal deleted successfully"
}
Response examples (403)
{
"success": false,
"message": "You do not have permission to edit the household."
}
Response examples (404)
{
"success": false,
"message": "Withdrawal not found."
}