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