removeNotificationFromNotificationScheme method
Removes a notification from a notification scheme.
Permissions required: Administer Jira global permission.
Implementation
Future<dynamic> removeNotificationFromNotificationScheme(
{required String notificationSchemeId,
required String notificationId}) async {
return await _client.send(
'delete',
'rest/api/3/notificationscheme/{notificationSchemeId}/notification/{notificationId}',
pathParameters: {
'notificationSchemeId': notificationSchemeId,
'notificationId': notificationId,
},
);
}