Delete a Project Release's File
DELETE /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/{file_id}/
Delete a file for a given release.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the release belongs to. 
- project_id_or_slug(string)REQUIRED
- The ID or slug of the project. 
- version(string)REQUIRED
- The version identifier of the release. 
- file_id(string)REQUIRED
- The ID of the file to delete. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- project:releases
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/{file_id}/ \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETERESPONSE
Success.