Delete client tag

DELETE /api/v2/companysettings/clienttags/{TagGUID}

This endpoint allows users to delete a company client tag.

Path parameters

  • TagGUID string(uuid) Required

    The GUID of the client tag to delete.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
  • 403 application/json

    Permission error.

    Hide response attributes Show response attributes object
  • 404 application/json

    Client tag not found

    Hide response attributes Show response attributes object
DELETE /api/v2/companysettings/clienttags/{TagGUID}
curl \
 -X DELETE https://api.fincalc.co.uk/api/v2/companysettings/clienttags/{TagGUID} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "message": "Company client tag deleted successfully."
}
Response examples (403)
{
  "success": false,
  "message": "You do not have permission to delete company client tags."
}
Response examples (404)
{
  "success": false,
  "message": "Company client tag not found."
}