bulk_user_import
Import multiple users into Okta via CSV, activate accounts, send emails, and assign default groups with a single action.
Instructions
Import multiple users from a CSV string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activateUsers | No | Whether to activate users immediately (default: false) | |
csvData | Yes | CSV string with user information (header row required) | |
defaultGroups | No | Default group IDs to assign all imported users to | |
sendEmail | No | Whether to send activation emails (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"activateUsers": {
"default": false,
"description": "Whether to activate users immediately (default: false)",
"type": "boolean"
},
"csvData": {
"description": "CSV string with user information (header row required)",
"type": "string"
},
"defaultGroups": {
"default": [],
"description": "Default group IDs to assign all imported users to",
"items": {
"type": "string"
},
"type": "array"
},
"sendEmail": {
"default": true,
"description": "Whether to send activation emails (default: true)",
"type": "boolean"
}
},
"required": [
"csvData"
],
"type": "object"
}