Project

General

Profile

Supress notifications using redmine api

Added by Fabrizio Rejala 19 days ago

hi, i'm trying to do a bulk create of issues using the redmine api, but i'm having a problem supressing the notifications

i tried doing this
issue = {
"issue": ...,
"notify": false
}

and send that to this url
post -> {redmine_url}/issue.json

but the email is being sent to the assignee person, is there anything i should know? i read that the notify: false should supress the notifications, but is not working
my redmine version is 5.1.0


Replies (1)

RE: Supress notifications using redmine api - Added by hawenav ckue 10 days ago

While the notify: false parameter should suppress notifications in Redmine API bulk issue creation, it might not be entirely reliable. Consider direct database modification, a custom Redmine plugin, or disabling email notifications for specific issue types or users. Remember to test your approach thoroughly and consult the Redmine API documentation for accurate information.

    (1-1/1)