getLinkedWorkspaceById method
Retrieve a specific Security Workspace linked to the Jira site for the given workspace ID.
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> getLinkedWorkspaceById(String workspaceId) async {
return await _client.send(
'get',
'rest/security/1.0/linkedWorkspaces/{workspaceId}',
pathParameters: {
'workspaceId': workspaceId,
},
);
}