Webhook Query/JQL: Issues assigned to me or where I am mentioned

Daniel Koller December 27, 2017

Good morning,

 

I need to create a webhook definition ( https://developer.atlassian.com/jiradev/jira-apis/webhooks?_ga=2.70090260.563420273.1514397247-1615143930.1514397247 ), which gives me

- all Issues where I get assigned to AND

- any issues here I get mentioned in the comments.

Do you have something ready at hand?

 

Kind regards,

 

Daniel

2 answers

0 votes
Domenico Manzo _Actonic_
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.
December 28, 2017

Your webhook should looks loke this:

Name: "Issues assigned to me or where I am mentioned"
URL: http://www.myremoteapp.com/webhookreceiver
Scope:
assignee = currentUser() or comment ~ currentUser()
Events: Issue Updated

0 votes
Alexey Matveev
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.
December 27, 2017

Hello,

Your JQL shoud look like this

assignee = currentUser() or comment ~ currentUser()

Suggest an answer

Log in or Sign up to answer