Delete an External Team
DELETE /api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/external-teams/{external_team_id}/
Delete the link between a team from an external provider and a Sentry team.
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. 
- external_team_id(integer)REQUIRED
- The ID of the external team object. This is returned when creating an external team. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- team:admin
Copied
curl https://sentry.io/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/external-teams/{external_team_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSE
CopiedNo Content.
Was this helpful?