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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.