You can create automation rules with the help of webhooks to remove tags from a ticket. Please follow the below steps to set up a ticket updates automation rule for removing tags from a ticket.
Login to your Freshdesk account as an administrator.
Navigate to Admin from the menu. Under Workflows, click on Automations.
Choose the Tickets tab and under Ticket Updates, click on the New Rule button.
Give your rule a name.
Under the When an action performed by… section, choose Agent.
Under the Involves any of these events: section, provide the conditions that trigger the webhook as per your business requirements.
For the On tickets with these properties: section, configure ticket properties for which you wish to remove tags.
Provide the following details under the Perform these actions: section.
Select Trigger webhook option for Choose action dropdown.
Select Request type as PUT.
Under URL, make use of the Freshdesk’s Update ticket API call.
Enable Required authentication.
Provide your API key.
Select JSON Encoding and choose Advanced Content.
Enter the following payload in the custom API request, where you can replace the examples with tags you wish to remove from your tickets.
{
"tags": [
"Example1",”Example2”,”Example3”
]
}
Click on Preview and Save, and then Save.
Please reach out to support@freshdesk.com if you require further assistance in setting up automation rules for removing tags from tickets.