mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
1.3 KiB
1.3 KiB
id, title, pagination_label, sidebar_label, keywords, description, slug, tags
| id | title | pagination_label | sidebar_label | keywords | description | slug | tags | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| account-list-customizer | Account List | Account List | Account List |
|
Intercept the account list command. | /connectivity/saas-connectivity/customizers/commands/account-list |
|
Overview
Use these commands to intercept the account-list command.
| Input/Output | Data Type |
|---|---|
| Input | StdAccountListInput |
Example StdAccountListInput
"state": {"date": "1686341338871"},
"stateful": true
Implementation
Before account-list command
Use this logic to implement the command:
.beforeStdAccountList(async (context: Context, input: StdAccountListInput) => {
logger.info(`Running before account list for account. State: ${input.state}`)
return input
})
The input object can be mutated and returned, but the same data type must still be returned.
After account-list command
After account-list is not available for customization at this time. If you need to modify the values of the response, it is recommended that you use Transforms.