Delete a Project
Schedules a project for deletion. Deletion happens asynchronously and therefore is not immediate. However once deletion has begun the state of a project changes and will be hidden from most public views.
Path Parameters
organization_slug(string)REQUIRED- The slug of the organization the project belongs to.
project_slug(string)REQUIRED- The slug of the project to delete.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires the following scopes:project:admin
DELETE /api/0/projects/{organization_slug}/{project_slug}/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/ \
-H 'Authorization: Bearer <auth_token>' \
-X DELETERESPONSE
Success.