Please help me create an automation when customer has no reply
- Status : waiting for customer
- no customer reply (either in internal or public note) within 48 hrs after status change
- send an email to the customer
and another 2nd follo up of another 48 hrs and for the 3rd 48hrs - shoud be closure
thanks
This is the solution I use
Create 3 separate rules with a scheduled trigger as the start, use a JQL in the scheduled trigger to get the required items.
Create a custom field, Last comment date of type Date-time and set this on the screen(s) used for edit and view
JQL example: Status in ("Waiting for Customer") and updated <= "{{now.minusBusinessDays(2).jqlDateTime}}" AND updated > "{{now.minusBusinessDays(4).jqlDateTime}}"
The above example also takes in mind that weekend days are not counted.
Add a conditions that you require and add a comment to the issue and an action to set the Last comment date field to {{now}}.
for the second automation scheduled trigger, use JQL:
Status in ("Waiting for Customer") and "Last comment date" <= "{{now.minusBusinessDays(2).jqlDateTime}}" AND "Last comment date" > "{{now.minusBusinessDays(4).jqlDateTime}}"
Add a conditions that you require and add a comment to the issue
for the third automation scheduled trigger, use JQL:
Status in ("Waiting for Customer") and "Last comment date" <= "{{now.minusBusinessDays(4).jqlDateTime}}" AND "Last comment date" > "{{now.minusBusinessDays(6).jqlDateTime}}"
The comment action on the issue will trigger an email to the customer with the comment set in the automation.
We just use a daily scheduled rule that looks for tickets using this query and resolve them
AND status = "Waiting for customer"
AND NOT status changed AFTER -7d
You can change the -7 to -2d for your use case and add the send email action.
We pair this with another rule that transitions the status back to "In Progress" if the reporter comments on the work item
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Emery Manayan
And alternative to @Marc - Devoteam 3 rules you can also try a single automation rule for “Customer No Reply” with 3 stages (48h, 96h, 144h) that I think will work:
Steps to build the rule
Actions:
Actions:
Actions:
Action: Remove those labels.
Hope this helps you set it up! 👍
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.