v14

latestOpenAPI 3.0.32026-08-04377889.4 MB
teams

Create a Team

Create a new Team under your account. You need to send a POST request with the desired Team slug, and optionally the Team name.

post/v1/teams

Request body

slugstring required

The desired slug for the Team

namestring

The desired name for the Team. It will be generated from the provided slug if nothing is provided

Example request

{
  "slug": "a-random-team",
  "name": "A Random Team"
}

Response

The team was created successfully

idstring required

Id of the created team

slugstring required

Example response

{
  "id": "team_nLlpyC6RE1qxqglFKbrMxlud"
}