v1

latestOpenAPI 3.1.0MIT2026-08-0492100246.4 KB
teams

Create a team owned by the current user.

post/teams

Request body

namestring required

The unique name for the team.

display_namestring required

The team's display name

Example request

{
  "name": "cloudquery"
}

Response

Created

created_atstring date-time
namestring required

The unique name for the team.

plan'free' | 'paid' | 'enterprise' | 'trial' required

The plan the team is on (trial is deprecated)

plan_end_timestring date-time
is_trial_activeboolean required
trial_end_timestring date-time
display_namestring required

The team's display name

internalboolean required

Example response

{
  "created_at": "2017-07-14T16:53:42Z",
  "name": "cloudquery",
  "plan_end_time": "2017-07-14T16:53:42Z",
  "trial_end_time": "2017-07-14T16:53:42Z",
  "display_name": "CloudQuery"
}