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
pagestringoptional

Identifier of the page results to fetch.

limitnumber · max: 1000optional

The number of results per page

titlestringoptional

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-03T20:33:53.050Z"
      },
      "member": {
        "role": "owner"
      }
    }
  ]
}

Was this helpful?