getLinkedWorkspaces method

Future getLinkedWorkspaces()

Retrieve all Security Workspaces linked with the Jira site.

The result will be what is currently stored, ignoring any pending updates or deletes.

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

Implementation

Future<dynamic> getLinkedWorkspaces() async {
  return await _client.send(
    'get',
    'rest/security/1.0/linkedWorkspaces',
  );
}