Teams

Manage teams and streamline user collaboration.

List all teams an organization member is part of

get
Authorizations
Path parameters
organizationIdstringrequired

The unique id of the organization

userIdstringrequired

The unique ID of the User

Query parameters
pagestring

Identifier of the page results to fetch.

limitnumber · max: 1000

The number of results per page

titlestring

If provided, only teams whose name contains the given parameter will be returned. Case insensitive.

Responses
curl -L \
  --url 'https://api.gitbook.com/v1/orgs/{organizationId}/members/{userId}/teams' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "next": {
    "page": "text"
  },
  "count": 1,
  "items": [
    {
      "team": {
        "object": "team",
        "id": "text",
        "title": "text",
        "members": 1,
        "spaces": 1,
        "createdAt": "2025-04-03T21:26:47.667Z"
      },
      "member": {
        "role": "owner"
      }
    }
  ]
}

Was this helpful?