v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Team Membership

List User Teams

Returns a paginated list of a teams that the user belongs to.

get/v3/users/{userId}/teams

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[number]integer
Example:1

Determines which page of the entities to retrieve.

Filter teams returned in the response.

Response

A paginated list response for a collection of users.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 100
    }
  },
  "data": [
    {
      "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "name": "IDM - Developers",
      "description": "The developers for the IDM API.",
      "system_team": false,
      "labels": {
        "env": "test"
      },
      "created_at": "1992-02-07T17:46:57.52Z",
      "updated_at": "2022-08-31T17:00:00.52Z"
    }
  ]
}