Delete a team with a SCIM Group DELETE Request.
1
//native
2
/**
3
* Delete an individual team
4
* Delete a team with a SCIM Group DELETE Request.
5
*/
6
export async function main(auth: RT.Sentry, team_id_or_slug: string) {
7
const url = new URL(
8
`https://${auth.region}.sentry.io/api/0/organizations/${auth.organizationSlug}/scim/v2/Groups/${team_id_or_slug}`
9
)
10
11
const response = await fetch(url, {
12
method: 'DELETE',
13
headers: {
14
Authorization: 'Bearer ' + auth.token
15
},
16
body: undefined
17
})
18
if (!response.ok) {
19
const text = await response.text()
20
throw new Error(`${response.status} ${text}`)
21
}
22
return await response.text()
23
24