create_group
Create a new group in Okta's user management system by specifying a group name and optional description to organize and manage users efficiently.
Instructions
Create a new group in Okta
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the group (optional) | |
| name | Yes | Name of the group |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the group (optional)",
"type": "string"
},
"name": {
"description": "Name of the group",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}