You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi - I can't disable email notification fundamentally (via Jira's Notification schemes) but I have an Adaptavist script that runs daily and generates hundreds of email notifications due to the issue updates it makes - Is there a clever way to suppress just notifications that this job causes?
Thanks
Carl
Hi @Carl Sjoquist ,
That should be possible using the DO_NOT_DISPATCH option with your issue manager.
You need update issue with IssueManager with dispatch option DO_NOT_DISPATCH and parameter sendmails false.
Here is an example:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def issueManager = ComponentAccessor.getIssueManager()
issueManager.updateIssue(user, event.issue, EventDispatchOption.DO_NOT_DISPATCH, false)
Documentation can be found here:
Looks perfect, just what we would need, but we just moved to the cloud. Is there an equivalent function available in the cloud version? sorry, I should have mentioned that up front.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Carl Sjoquist ,
On cloud this should be even easier. The cloud app for Scriptrunner uses the REST API (your script will be different too).
A method exists to edit an issue https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-put
and this call also has a property "notifyUsers" which you can set to "false"
notifyUsers
boolean
Whether a notification email about the issue update is sent to all watchers. To disable the notification, administer Jira or administer project permissions are required. If the user doesn't have the necessary permission the request is ignored.
Default:
true
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.
Hello everyone, I am a product manager in the Jira Cloud team focused on making sure our customers have a delightful experience using our products. Towards that goal, one of the areas which is extr...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.