Delete client tag for a specific client
This endpoint allows users to delete a client tag for a specified client.
DELETE
/api/v2/clients/{ClientGUID}/tags/{TagGUID}
curl \
-X DELETE https://api.fincalc.co.uk/api/v2/clients/{ClientGUID}/tags/{TagGUID} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"message": "Client tag deleted successfully."
}
Response examples (403)
{
"success": false,
"message": "You do not have permission to edit that client."
}
Response examples (404)
{
"success": false,
"message": "Client tag not found for this client."
}