Provision a New Team
Create a new team bound to an organization via a SCIM Groups POST Request. Note that teams are always created with an empty member set. The endpoint will also do a normalization of uppercase / spaces to lowercase and dashes.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:team:write
POST /api/0/organizations/{organization_slug}/scim/v2/Groups
curl https://sentry.io/api/0/organizations/{organization_slug}/scim/v2/Groups \ -H 'Authorization: Bearer <auth_token>' \ -H 'Content-Type: application/json'
RESPONSESCHEMA
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"displayName": "Test SCIMv2",
"members": [],
"meta": {
"resourceType": "Group"
},
"id": "123"
}