notify method
Creates an email notification for an issue and adds it to the mail queue.
Permissions required:
- Browse Projects project permission for the project that the issue is in.
- If issue-level security is configured, issue-level security permission to view the issue.
Implementation
Future<dynamic> notify(
{required String issueIdOrKey, required Notification body}) async {
return await _client.send(
'post',
'rest/api/3/issue/{issueIdOrKey}/notify',
pathParameters: {
'issueIdOrKey': issueIdOrKey,
},
body: body.toJson(),
);
}