Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Trying to notify users when a Due Date is near.

Hunter Trahan September 5, 2018

I think I need to create an scheduled rule that checks daily if a ticket's Due Date is near, and then send a notification to the Assignee if it's within range.

 

Problem is, I'm not very well versed in JQL and I'd like to learn how to write this query in it. Thanks!

It needs to notify the assignee if their due date is less than 4 days away, and/or when it's overdue.

If (DueDate - TodaysDate) < 4, then notify Assignee

1 answer

1 accepted

2 votes
Answer accepted
Lauren Schroeder
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 5, 2018

Hi Hunter,

You can set this up by creating a JQL filter and then setting up a subscription for the group that needs to be notified.

Here's the JQL you could use:

duedate <4d and duedate > 0d and assignee = currentUser() 

Hunter Trahan September 7, 2018

Doesn't seem to be working at the moment.

Hunter Trahan September 7, 2018

duedate <4d and assignee = UserName

Worked, thanks!

Suggest an answer

Log in or Sign up to answer