Delete an Organization's Release
DELETE /api/0/organizations/{organization_id_or_slug}/releases/{version}/
Permanently remove a release and all of its files.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the resource belongs to. 
- version(string)REQUIRED
- The version identifier of the release 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- project:admin
- project:releases
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/releases/{version}/ \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETERESPONSE
No Content.