Account Enable
Overview
Use these commands to intercept the account-enable command.
Input/Output | Data Type |
---|---|
Input | StdAccountEnableInput |
Output | StdAccountEnableOutput |
Example StdAccountEnableInput
"identity": "john.doe",
"key": {
"simple": {
"id": "john.doe"
}
}
Example StdAccountEnableOutput
{
"identity": "john.doe",
"key": {
"simple": {
"id": "john.doe"
}
},
"disabled": false,
"locked": false,
"attributes": {
"id": "john.doe",
"displayName": "John Doe",
"email": "[email protected]",
"entitlements": [
"administrator",
"sailpoint"
]
}
}
Implementation
Before account-enable command
Use this logic to implement the command:
.beforeStdAccountEnable(async (context: Context, input: StdAccountEnableInput) => {
logger.info(`Running before account, for account ${input.identity}`)
return input
})
The input
object can be mutated and returned, but the same data type must still be returned.
After account-enable command
Use this logic to implement the command:
.afterStdAccountEnable(async (context: Context, output: StdAccountEnableOutput) => {
logger.info(`Running after account enable for account ${output.identity}`)
return output
})
The output
object can be mutated and returned, but the same data type must still be returned.