Delete a Team
DELETE /api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/
Schedules a team for deletion.
Note: Deletion happens asynchronously and therefore is not immediate. Teams will have their slug released while waiting for deletion.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The ID or slug of the organization the resource belongs to. 
- team_id_or_slug(string)REQUIRED
- The ID or slug of the team the resource belongs to. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- team:admin
curl https://sentry.io/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/ \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETERESPONSE
No Content.