Delete a Project

DELETE /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/

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_id_or_slug (string)
REQUIRED

The id or slug of the organization the resource belongs to.

project_id_or_slug (string)
REQUIRED

The id or slug of the project the resource belongs to.

Scopes

<auth_token> requires one of the following scopes:
  • project:admin
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/ \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETE
RESPONSE
No Content.