activate_user
Enable user activation in Okta by providing a user ID. Optionally configure email notifications for activation.
Instructions
Activate a user in Okta
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sendEmail | No | Whether to send an activation email (default: true) | |
userId | Yes | The unique identifier of the Okta user |
Input Schema (JSON Schema)
{
"properties": {
"sendEmail": {
"description": "Whether to send an activation email (default: true)",
"type": "boolean"
},
"userId": {
"description": "The unique identifier of the Okta user",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}