Skip to main content
FuseFuse
IntegrationsOktaActions

List Okta user assigned apps

List assigned application links for one Okta user.

Agent markdown

users.apps.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
appsarray<object>YesmaxItems 200
apps[]objectYesadditionalProperties false
apps[].app_instance_idstringYesminLength 1; maxLength 128
apps[].app_namestringYesminLength 1; maxLength 256
apps[].labelstringYesminLength 1; maxLength 256
apps[].link_urlstringNomaxLength 2048
apps[].hiddenbooleanNo
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": {
    "apps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "app_instance_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "app_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "label": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "link_url": {
            "type": "string",
            "maxLength": 2048
          },
          "hidden": {
            "type": "boolean"
          }
        },
        "required": [
          "app_instance_id",
          "app_name",
          "label"
        ]
      },
      "maxItems": 200
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "apps"
  ]
}