Skip to main content
FuseFuse
IntegrationsOktaActions

List Okta apps

List applications in the connected Okta org.

Agent markdown

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
appsarray<object>YesmaxItems 200
apps[]objectYesadditionalProperties false
apps[].idstringYesminLength 1; maxLength 128
apps[].namestringYesminLength 1; maxLength 256
apps[].labelstringYesminLength 1; maxLength 256
apps[].statusstringYesminLength 1; maxLength 64
apps[].sign_on_modestringNomaxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 200
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "q": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "apps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "label": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "sign_on_mode": {
            "type": "string",
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "name",
          "label",
          "status"
        ]
      },
      "maxItems": 200
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "apps"
  ]
}