Remove an Issue
DELETE /api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/
Asynchronously queue an individual issue for deletion.
Path Parameters
organization_id_or_slug(string)REQUIREDThe ID or slug of the organization the resource belongs to.
issue_id(string)REQUIREDThe ID of the issue you'd like to query.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:event:admin
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
CopiedAccepted.
Was this helpful?