Skip to main content
FuseFuse
IntegrationsOktaActions

Update Okta group

Update an Okta group name or description.

Agent markdown

groups.update · 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.groups.manage

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
group_idstringYesminLength 1; maxLength 128
namestringNominLength 1; maxLength 256
descriptionstringNomaxLength 1024

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
typestringYesenum OKTA_GROUP | APP_GROUP | BUILT_IN
namestringYesminLength 1; maxLength 256
descriptionstringNomaxLength 1024
created_atstringNominLength 1; maxLength 64
updated_atstringNominLength 1; maxLength 64
last_membership_updated_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "group_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 1024
    }
  },
  "required": [
    "group_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "type": {
      "type": "string",
      "enum": [
        "OKTA_GROUP",
        "APP_GROUP",
        "BUILT_IN"
      ]
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256
    },
    "description": {
      "type": "string",
      "maxLength": 1024
    },
    "created_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "last_membership_updated_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id",
    "type",
    "name"
  ]
}