Delete improvement
This endpoint allows users to delete a household asset improvement.
Path parameters
-
HouseholdGUID
string(uuid) Required The HouseholdGUID of the client.
-
AssetGUID
string(uuid) Required The AssetGUID for the improvement you want to delete.
-
ImprovementGUID
string(uuid) Required The ImprovementGUID you want to delete.
DELETE
/api/v2/household/{HouseholdGUID}/assets/{AssetGUID}/improvements/{ImprovementGUID}
curl \
--request DELETE 'https://api.fincalc.co.uk/api/v2/household/{HouseholdGUID}/assets/{AssetGUID}/improvements/{ImprovementGUID}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"message": "Improvement deleted successfully"
}
Response examples (403)
{
"success": false,
"message": "You do not have permission to edit the household."
}
Response examples (404)
{
"success": false,
"message": "Improvement not found."
}