Skip to main content
FuseFuse
IntegrationsOktaActions

List Okta user groups

List groups for one Okta user.

Agent markdown

users.groups.list · Okta · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • okta.users.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_idstringYesminLength 1; maxLength 128
page_sizeintegerNominimum 1; maximum 200
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
groupsarray<object>YesmaxItems 200
groups[]objectYesadditionalProperties false
groups[].idstringYesminLength 1; maxLength 128
groups[].typestringYesenum OKTA_GROUP | APP_GROUP | BUILT_IN
groups[].namestringYesminLength 1; maxLength 256
groups[].descriptionstringNomaxLength 1024
groups[].created_atstringNominLength 1; maxLength 64
groups[].updated_atstringNominLength 1; maxLength 64
groups[].last_membership_updated_atstringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 200
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "groups": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "type": {
            "type": "string",
            "enum": [
              "OKTA_GROUP",
              "APP_GROUP",
              "BUILT_IN"
            ]
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "description": {
            "type": "string",
            "maxLength": 1024
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "last_membership_updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "type",
          "name"
        ]
      },
      "maxItems": 200
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "groups"
  ]
}