Skip to main content
FuseFuse
IntegrationsOktaActions

Assign Okta app group

Assign a group to an Okta application.

Agent markdown

apps.groups.assign · Okta · v1

Details

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

Scopes

  • okta.apps.manage

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
app_idstringYesminLength 1; maxLength 128
group_idstringYesminLength 1; maxLength 128
priorityintegerNominimum 0; maximum 1000

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
app_idstringYesminLength 1; maxLength 128
group_idstringYesminLength 1; maxLength 128
priorityintegerNominimum 0; maximum 1000
last_updated_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "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
    }
  },
  "required": [
    "app_id",
    "group_id"
  ]
}
Output
{
  "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"
  ]
}