This article describes in detail examples of the following triggers from which you can create your own.
Here is another example of the «Do» block — this is how the auto-reply trigger works in our account when you write to our support outside working hours. After sending a notification, the trigger changes the ticket's status, its type, with a tag assigned.
Tags added by other triggers (as in p. 1) or manually, but are no longer needed, can interfere with the work and distort statistics in reports. To avoid this, create a trigger to delete spent tags.
Clear and fast distribution of tasks between employees and departments helps to speed up the processing of tickets. Perhaps the most common way is to assign queries through a certain channel to specific agents or groups. Let's set up the automatic assignment of new Slack channel tickets to agents in the «Support» group.
Let us take a narrower and more complex example. The task is to escalate unresolved issues over a certain channel to the leading support specialist when the SLA deadline is approaching; it should be done only for tickets with high and emergency priority over the Telegram channel.
Set up automatic redirection of letters (for example, with the subject «Accounting») to an external address.
The «city» field can be added in the «Settings» → «Custom fields» section:
Read more about custom fields here.
Configure automatic SLA policy change based on a custom field. For example, if address category (custom field) = claim.
If the client gave a low score to the support response but did not leave a comment, you can send a separate message to the client asking him to tell what went wrong. Alternatively, do it not immediately when the client's emotions are acute, but 24 hours after the last contact. Take into account the CSI settings, whether you are constantly sent a request for evaluation, or only once.
To send key information about the request, use the POST-request. To do this, select the appropriate action in your trigger and paste the text of the view:
{
"url": "https://webhook.site/0beb0b35-e145-4901-8047-39e228e8db3b”,
"data": {
"attachments": [
{
"title": "New med",
"fields": [
{
"title": "Client",
"value": "{{client_email}}",
"short": true
},
{
"title": "The reason for appeal",
"value": "{{ticket_field__1291}}",
"short": true
},
{
"title": "The text of appeal",
"value": "{{ticket_message_last}}",
"short": false
}
],
"color": "#764FA5"
}
]
}
}