run_onboarding_workflow
Automate user onboarding by processing CSV data, assigning default groups, mapping attributes to specific groups, provisioning applications, and optionally activating users and sending welcome emails.
Instructions
Run a complete onboarding workflow for multiple users from CSV data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activateUsers | No | Whether to activate users immediately (default: true) | |
applicationIds | No | Application IDs to provision for all users | |
csvData | Yes | CSV string with user information | |
defaultGroups | No | Default group IDs to assign all users to | |
groupMappings | No | Mapping of user attributes to group IDs (e.g., {"department": {"Engineering": "group1Id"}}) | |
sendWelcomeEmail | No | Whether to send welcome emails (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"activateUsers": {
"default": true,
"description": "Whether to activate users immediately (default: true)",
"type": "boolean"
},
"applicationIds": {
"default": [],
"description": "Application IDs to provision for all users",
"items": {
"type": "string"
},
"type": "array"
},
"csvData": {
"description": "CSV string with user information",
"type": "string"
},
"defaultGroups": {
"default": [],
"description": "Default group IDs to assign all users to",
"items": {
"type": "string"
},
"type": "array"
},
"groupMappings": {
"default": {},
"description": "Mapping of user attributes to group IDs (e.g., {\"department\": {\"Engineering\": \"group1Id\"}})",
"type": "object"
},
"sendWelcomeEmail": {
"default": true,
"description": "Whether to send welcome emails (default: true)",
"type": "boolean"
}
},
"required": [
"csvData"
],
"type": "object"
}