Delete an Organization Release's File
DELETE /api/0/organizations/{organization_id_or_slug}/releases/{version}/files/{file_id}/
Permanently remove a file from a release. Also removes the physical file from storage.
Path Parameters
organization_id_or_slug(string)REQUIREDThe ID or slug of the organization the resource belongs to.
version(string)REQUIREDThe version identifier of the release
file_id(string)REQUIREDThe ID of the release file.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:project:adminproject:releases
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/{file_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
CopiedNo Content.
Was this helpful?