submitWorkspaces method

Future<void> submitWorkspaces({
  1. required dynamic body,
})

Insert Security Workspace IDs to establish a relationship between them and the Jira site the app is installed on. If a relationship between the workspace ID and Jira already exists then the workspace ID will be ignored and Jira will process the rest of the entries.

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

Implementation

Future<void> submitWorkspaces({required dynamic body}) async {
  await _client.send(
    'post',
    'rest/security/1.0/linkedWorkspaces/bulk',
    body: body,
  );
}