Hello, all. I have a question on which provisioning policy usageType correlates to the removal of an entitlement. I have reviewed the documentation here create-provisioning-policy | SailPoint Developer Community which lists out the usageType options, but I am having a hard time discerning which usageType is utilized when an entitlement is removed.
As context for my question, I am working to integrate an application that was built in-house as a web services connector, and I need to pass along the user’s manager’s email when deprovisioning an entitlement so that some logic inside the application can run as expected.
I have tried several usageTypes and cannot seem to land on the right one. An example of the provisioning policy I am using:
{
"name": "Update",
"description": null,
"usageType": "UPDATE",
"fields": [
{
"name": "userName",
"transform": {
"type": "identityAttribute",
"attributes": {
"name": "email"
}
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
},
{
"name": "managerEmail",
"transform": {
"type": "identityAttribute",
"attributes": {
"name": "managerEmail"
}
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
}
]
}
Hopefully this one isn’t too difficult! Appreciate any insight.