provider Issue bulk operations POST /rest/api/3/bulk/issues/delete
@utdk/jira /rest/api/3/bulk/issues/delete
Bulk delete issues
Use this API to submit a bulk delete request. You can delete up to 1,000 issues in a single operation. **[Permissions](#permissions) required:** * Global bulk change [permission](https://support.atlassian.com/jira-cloud-administration/docs/manage-global-permissions/). * Delete [issues permission](https://support.atlassian.com/jira-cloud-administration/docs/permissions-for-company-managed-projects/#Delete-issues/) in all projects that contain the selected issues. * Browse [project permission](https://support.atlassian.com/jira-cloud-administration/docs/manage-project-permissions/) in all projects that contain the selected issues. * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue.

Try it

Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

submitbulkdelete
POST/rest/api/3/bulk/issues/delete
Use this API to submit a bulk delete request. You can delete up to 1,000 issues in a single operation. **[Permissions](#permissions) required:** * Global bulk change [permission](https://support.atlassian.com/jira-cloud-administration/docs/manage-global-permissions/). * Delete [issues permission](https://support.atlassian.com/jira-cloud-administration/docs/permissions-for-company-managed-projects/#Delete-issues/) in all projects that contain the selected issues. * Browse [project permission](https://support.atlassian.com/jira-cloud-administration/docs/manage-project-permissions/) in all projects that contain the selected issues. * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue.

Input

required

List of issue IDs or keys which are to be bulk deleted. These IDs or keys can be from different projects and issue types.

A boolean value that indicates whether to send a bulk change notification when the issues are being deleted. If `true`, dispatches a bulk notification email to users about the updates.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import jira from '@utdk/jira';

await jira.submitbulkdelete({
  "sendBulkNotification": true
})