IntegrationsOktaActions
Create Okta group
Create an Okta group.
groups.create · Okta · v1
Details
Scopes
okta.groups.manage
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
name | string | Yes | minLength 1; maxLength 256 |
description | string | No | maxLength 1024 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
type | string | Yes | enum OKTA_GROUP | APP_GROUP | BUILT_IN |
name | string | Yes | minLength 1; maxLength 256 |
description | string | No | maxLength 1024 |
created_at | string | No | minLength 1; maxLength 64 |
updated_at | string | No | minLength 1; maxLength 64 |
last_membership_updated_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"description": {
"type": "string",
"maxLength": 1024
}
},
"required": [
"name"
]
}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"
]
}