mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
1.9 KiB
1.9 KiB
id, title, pagination_label, sidebar_label, keywords, description, slug, tags
| id | title | pagination_label | sidebar_label | keywords | description | slug | tags | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| account-read-customizer | Account Read | Account Read | Account Read |
|
Intercept the account read command. | /connectivity/saas-connectivity/customizers/commands/account-read |
|
Overview
Use these commands to intercept the account-read command.
| Input/Output | Data Type |
|---|---|
| Input | StdAccountReadInput |
| Output | StdAccountReadOutput |
Example StdAccountReadInput
"identity": "john.doe",
"key": {
"simple": {
"id": "john.doe"
}
}
Example StdAccountReadOutput
{
"identity": "john.doe",
"key": {
"simple": {
"id": "john.doe"
}
},
"disabled": false,
"locked": false,
"attributes": {
"id": "john.doe",
"displayName": "John Doe",
"email": "example@sailpoint.com",
"entitlements": [
"administrator",
"sailpoint"
]
}
}
Implementation
Before account-read command
Use this logic to implement the command:
.beforeStdAccountRead(async (context: Context, input: StdAccountReadInput) => {
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-read command
Use this logic to implement the command:
.afterStdAccountRead(async (context: Context, output: StdAccountReadOutput) => {
logger.info(`Running after account read for account ${output.identity}`)
return output
})
The output object can be mutated and returned, but the same data type must still be returned.