removeNotificationFromNotificationScheme method

Future removeNotificationFromNotificationScheme({
  1. required String notificationSchemeId,
  2. required String notificationId,
})

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,
    },
  );
}