Bulk Remove a List of Issues
Permanently remove the given issues. The list of issues to modify is given through the id
query parameter. It is repeated for each issue that should be removed.
Only queries by 'id' are accepted.
If any ids are out of scope this operation will succeed without any data mutation.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the issues belong to.
project_slug
(string)REQUIREDThe slug of the project the issues belong to.
Query Parameters:
id
(integer)A list of IDs of the issues to be removed. This parameter shall be repeated for each issue.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:project:admin
DELETE /api/0/projects/{organization_slug}/{project_slug}/issues/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/issues/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
Success.