Teams

List teams

Retrieve every team configured for the authenticated workspace. Use the returned team_id values with the interviewer team assignment endpoints, or with team_ids on interviewer creation. Requires the Teams feature to be enabled for the workspace.

get/api/v2/teams

Headers

X-API-KEYstring nullable
Authorizationstring nullable
X-Workspace-Idstring nullable

Response

Successful Response

Example response

{
  "data": [
    {
      "team_id": "team_abc123",
      "name": "Engineering",
      "member_count": 4
    }
  ]
}

Changes