Teams
Create a team
This endpoint allows you to create a team.
If you are using a personal access token, you need to have an access level superior or equal to manager.
If a personal access token is being used, the member is automatically added to the created team with permissions can_manage and full_access
post/v1/teams
Request body
Example request
{
"id": 3252,
"name": "feature team A",
"description": "Description of my team",
"gitguardian_url": "https://dashboard.gitguardian.com/workspace/1/settings/user/teams/1",
"external_provider_id": "123-456-7890"
}Response
Team created
Example response
{
"id": 3252,
"name": "feature team A",
"description": "Description of my team",
"gitguardian_url": "https://dashboard.gitguardian.com/workspace/1/settings/user/teams/1",
"external_provider_id": "123-456-7890"
}