Skip to main content
FuseFuse
IntegrationsOktaActions

Get Okta app

Get one Okta application by id.

Agent markdown

apps.get · 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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
namestringYesminLength 1; maxLength 256
labelstringYesminLength 1; maxLength 256
statusstringYesminLength 1; maxLength 64
sign_on_modestringNomaxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "app_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "app_id"
  ]
}
Output
{
  "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"
  ]
}