Delete a Team from a Project
DELETE /api/0/projects/{organization_slug}/{project_slug}/teams/{team_slug}/
Revoke a team's access to a project.
Note that Team Admins can only revoke access to teams they are admins of.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the resource belongs to.
project_slug
(string)REQUIREDThe slug of the project the resource belongs to.
team_slug
(string)REQUIREDThe 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:project:admin
project:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/teams/{team_slug}/ \ -H 'Authorization: Bearer <auth_token>' \ -X DELETE
RESPONSESCHEMA
{
"id": "6758470122493650",
"slug": "The Spoiled Yoghurt",
"name": "the-spoiled-yoghurt",
"platform": "javascript",
"dateCreated": "2023-03-29T15:25:21.344565Z",
"isBookmarked": false,
"isMember": true,
"features": [
"alert-filters",
"custom-inbound-filters",
"data-forwarding",
"discard-groups",
"minidump",
"race-free-group-creation",
"rate-limits",
"servicehooks",
"similarity-indexing",
"similarity-indexing-v2",
"similarity-view",
"similarity-view-v2"
],
"firstEvent": null,
"firstTransactionEvent": false,
"access": [
"member:read",
"event:read",
"project:admin",
"team:write",
"project:write",
"team:admin",
"project:read",
"org:integrations",
"org:read",
"project:releases",
"team:read",
"alerts:write",
"event:admin",
"event:write",
"alerts:read"
],
"hasAccess": true,
"hasMinifiedStackTrace": false,
"hasCustomMetrics": false,
"hasMonitors": false,
"hasProfiles": false,
"hasReplays": false,
"hasSessions": false,
"isInternal": false,
"isPublic": false,
"avatar": {
"avatarType": "letter_avatar",
"avatarUuid": null
},
"color": "#5cbf3f",
"status": "active",
"team": {
"id": "2349234102",
"name": "Prime Mover",
"slug": "prime-mover"
},
"teams": [
{
"id": "2349234102",
"name": "Prime Mover",
"slug": "prime-mover"
}
]
}