Skip to main content
FuseFuse
IntegrationsOktaActions

Unassign Okta app user

Remove a user's direct Okta application assignment.

Agent markdown

apps.users.unassign · Okta · v1

Details

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

Scopes

  • okta.apps.manage

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
app_idstringYesminLength 1; maxLength 128
user_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "app_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "app_id",
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}