Bulk Remove a List of Issues
DELETE /api/0/projects/{organization_slug}/{project_slug}/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, e.g.
?id=1&id=2&id=3
. If this parameter is not provided, it will attempt to remove the first 1000 issues.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:event:admin
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/issues/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
Success.