Skip to content

Function: deleteWorkspaces()

ts
function deleteWorkspaces(client, parameters): Promise<void>;

Defined in: src/agile/api/operations.ts:52

Bulk delete all Operations Workspaces that match the given request.

Only Connect apps that define the jiraOperationsInfoProvider 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

Parameters

ParameterTypeDescription
clientClient-
parameters{ workspaceIds: string | string[]; }-
parameters.workspaceIdsstring | string[]Comma-separated list of Operations Workspace IDs to delete. All data associated with the given workspaces will eventually be removed from Jira. Example: workspaceIds=111-222-333,444-555-666.

Returns

Promise<void>