Forums

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

how to get the task end notification of service request

Abilash
Contributor
March 17, 2026

In our Org,we have tickets with start date and end dates,so our requirement is to get the notification of ticket end date before 48hr,so it is possible to get the notification . 

3 answers

1 vote
Piotr Smialek
Contributor
March 17, 2026

you can totally do this using a Scheduled trigger in Jira Automation.

Instead of waiting for an update, Jira will just scan your tickets every morning to see what's due.

here’s the setup:

Trigger: Set it to Scheduled (e.g., every day at 8:00 AM).

JQL Filter: Use this to find the right tickets: "End date" >= 47h AND "End date" <= 49h AND statusCategory != Done
(This ensures you catch everything hitting that 48h mark without spamming finished tasks).

Action: Add a Send email or Slack notification action. You can use "Smart Values" like {{issue.key}}

Abilash
Contributor
March 17, 2026

Hi  ,Thanks for the reply.
can be done for a particular service request? while doing getting this error and used JQL : project = "YourProjectKey" AND issuetype = "Service Request" AND endDate >= startOfDay(+2d) AND endDate < startOfDay(+3d)....please help me on this.

image (15).png

Piotr Smialek
Contributor
March 18, 2026

try this: "End date" >= 47h AND "End date" <= 49h AND statusCategory != Done

Abilash
Contributor
March 18, 2026

after changing also getting same error

Piotr Smialek
Contributor
March 18, 2026

are there any details below jql input field about warning?

Arkadiusz Wroblewski
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 Champions.
March 18, 2026

@Abilash 

The first thing I would check is the field name.
If this is a custom field like End date, use the exact field name in quotes, for example:

project = ABC AND "End date" >= startOfDay(+2d) AND "End date" < startOfDay(+3d) AND statusCategory != Done

I would also avoid issuetype = "Service Request" unless that is really your Jira issue type. In JSM, “Service Request” is often the request type, not the issue type. Remember that.

Like Piotr Smialek likes this
Abilash
Contributor
March 18, 2026

image (17).pngtried with both options, getting the same error, where I use the actual end field in the service request. 

Piotr Smialek
Contributor
March 18, 2026

you have space added after end word  "Actual end " 

Abilash
Contributor
March 18, 2026

Checked, and the same error is getting. Let me know exactly where I am missing it. If you are done from your end, please share the step-by-step process if possible.

Piotr Smialek
Contributor
March 18, 2026

hmm no idea what is the problem :( im not good at permissions schemes but maybe there is a direction you should check

0 votes
Benjamin
Community Champion
March 17, 2026

Hi @Abilash ,

 

@Piotr Smialek provided a great solution. The only thing I would add is to have an action to comment in the ticket to remind the user that there's 48hrs left before the due date and to please follow up. Once you @at mention the assignee, they will also get an notification as well. This help to put a note in the email and notified the ticket owner. 

0 votes
Arkadiusz Wroblewski
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 Champions.
March 17, 2026

Hello @Abilash 

That is possible with Automation.

For this use case, I would use a Scheduled rule that checks tickets whose End date is coming up in the next 48 hours, and then sends the notification before the deadline.

So the approach is basically: run the rule on a schedule, filter the relevant requests with JQL, and then send the email or other notification action.

That's pretty much standard use case.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events