deleteLinkedWorkspaces method

Future<void> deleteLinkedWorkspaces()

Bulk delete all linked Security Workspaces that match the given request.

Only Connect apps that define the jiraSecurityInfoProvider module can access this resource. This resource requires the 'DELETE' scope for Connect apps.

e.g. DELETE /bulk?workspaceIds=111-222-333,444-555-666

Implementation

Future<void> deleteLinkedWorkspaces() async {
  await _client.send(
    'delete',
    'rest/security/1.0/linkedWorkspaces/bulk',
  );
}