Delete client tag for a specific client

DELETE /api/v2/clients/{ClientGUID}/tags/{TagGUID}

This endpoint allows users to delete a client tag for a specified client.

Path parameters

  • ClientGUID string(uuid) Required

    The GUID of the client you want to delete the tag from.

  • TagGUID string(uuid) Required

    The GUID of the client tag you want to remove from the client.

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/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."
}