mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +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 | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| entitlement-list-customizer | Entitlement List | Entitlement List | Entitlement List |
|
Intercept the entitlement list command. | /connectivity/saas-connectivity/customizers/commands/entitlement-list |
|
Overview
Use these commands to intercept the entitlement-list command.
| Input/Output | Data Type |
|---|---|
| Input | StdEntitlementListInput |
Example StdEntitlementListInput
{
"type": "group"
}
Implementation
Before entitlement-list command
Use this logic to implement the command:
.beforeStdEntitlementList(async (context: Context, input: StdEntitlementListInput) => {
logger.info(`Running before entitlement 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 entitlement-list command
After entitlement-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.