deleteNotificationScheme method

Future deleteNotificationScheme(
  1. String notificationSchemeId
)

Deletes a notification scheme.

Permissions required: Administer Jira global permission.

Implementation

Future<dynamic> deleteNotificationScheme(String notificationSchemeId) async {
  return await _client.send(
    'delete',
    'rest/api/3/notificationscheme/{notificationSchemeId}',
    pathParameters: {
      'notificationSchemeId': notificationSchemeId,
    },
  );
}