v22

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-04970425.1 KB
Permissions

List team permissions of a user

Query and filter the permission with team_id, user_id, and permission_id. Note that this might contain the permissions with the same permission ID across different teams and users. (team_id, user_id, permission_id) together uniquely identify a permission.

get/team-permissions

Query parameters

team_idstring

Filter with the team ID. If set, only the permissions of the members in a specific team will be returned.

Example:cce084a3-28b7-418e-913e-c8ee6d802ea4

Filter with the team ID. If set, only the permissions of the members in a specific team will be returned.

user_idstring

Filter with the user ID. If set, only the permissions this user has will be returned. Client request must set user_id=me

Example:me

Filter with the user ID. If set, only the permissions this user has will be returned. Client request must set user_id=me

permission_idstring

Filter with the permission ID. If set, only the permissions with this specific ID will be returned

Example:16399452-c4f3-4554-8e44-c2d67bb60360

Filter with the permission ID. If set, only the permissions with this specific ID will be returned

recursive'true' | 'false'

Whether to list permissions recursively. If set to false, only the permission the users directly have will be listed. If set to true all the direct and indirect permissions will be listed.

Example:true

Whether to list permissions recursively. If set to false, only the permission the users directly have will be listed. If set to true all the direct and indirect permissions will be listed.

Response

Successful response

Example response

{
  "items": [
    {
      "id": "read_secret_info",
      "user_id": "3241a285-8329-4d69-8f3d-316e08cf140c",
      "team_id": "ad962777-8244-496a-b6a2-e0c6a449c79e"
    }
  ],
  "pagination": {
    "next_cursor": "b3d396b8-c574-4c80-97b3-50031675ceb2"
  }
}