Teams

List Organization Teams Endpoint

get

Endpoint to list teams of an organization.

Args: organization_id: Organization ID. offset: Offset for pagination. limit: Limit for pagination. user: Authenticated user. rbac: RBAC component. db: Async db session.

Returns: List of all teams matching the given filters.

Authorizations
OAuth2clientCredentialsRequired
Token URL: Refresh URL:

OAuth2authorizationCodeRequired
Authorization URL: Token URL: Refresh URL:
Path parameters
organization_idstring · uuidRequired
Query parameters
offsetintegerOptionalDefault: 0
limitinteger · max: 100OptionalDefault: 100
Responses
200

Successful Response

application/json
get
/organizations/{organization_id}/teams
GET /organizations/{organization_id}/teams HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "name": "text",
    "description": "text",
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "created": "2025-11-12T16:31:07.878Z",
    "updated": "2025-11-12T16:31:07.878Z",
    "member_count": 1
  }
]

Last updated

Was this helpful?