I’ll probably explain this in detail. I have got a two set up here i) Ticket creation automation rule(formerly Dispatch’r) to add a tag called ‘Reports’ to a ticket upon ticket creation and ii) Custom app should check if the ticket got a tag called ‘Reports’ and do an action. Both should apply upon creation of a new ticket.
My question here is only if the Ticket creation automation rule applies first then the tag ‘Reports’ will be added and based on this the custom app will apply. Hence, I want to confirm whether the Ticket creation rule will run first or the custom app for a newly created ticket.
Automation updates the tag based on some condition.
The app wouldn’t trigger ticketUpdate event for just tag updates.
Recommended approach would be moving the automation rules to custom app or along with the tag field, update some other default field on which you can listen to the update event and go on with your actions in the custom app.
Hi Sab,
Here is what I can think for your use case.
Move your tagging logic to the custom app and do any other subsequent actions related to the tagging in the app itself.
The other option is, along with tagging, if you can update any other default fields, it can trigger onTicketUpdate, which can be used for further actions.