Skip to main content
FuseFuse
IntegrationsOktaActions

List Okta app groups

List group assignments for an Okta application.

Agent markdown

apps.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.apps.read

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
assignmentsarray<object>YesmaxItems 200
assignments[]objectYesadditionalProperties false
assignments[].app_idstringYesminLength 1; maxLength 128
assignments[].group_idstringYesminLength 1; maxLength 128
assignments[].priorityintegerNominimum 0; maximum 1000
assignments[].last_updated_atstringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "app_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 200
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "app_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "assignments": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "app_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "group_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "priority": {
            "type": "integer",
            "minimum": 0,
            "maximum": 1000
          },
          "last_updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "app_id",
          "group_id"
        ]
      },
      "maxItems": 200
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "assignments"
  ]
}