I’m setting up a Web Service VA Connector to integrate my application, MyApp, where entitlements are modeled as “permissions.”
Issue:
When a user requests an Access Profile that includes multiple permissions, the connector triggers one API call per permission to MyApp, each adding a single permission.
Example:
User requests an Access Profile containing permission1 and permission2
ISC sends an “add entitlement” operation for permission1
ISC sends another “add entitlement” operation for permission2
However, I’d like ISC to send a single “add entitlement” operation with the full list: [“permission1”, “permission2”].
I enabled the flag addRemoveEntInSingleReq = true, but I still see as many add calls as there are entitlements in the request.
From my connector logs and monitoring, I can confirm the provisioning plan includes both entitlements (plan.permissions = [“permission1”, “permission2”]), yet each outbound “add entitlement” request only carries one permission in the body.
Has anyone successfully configured addRemoveEntInSingleReq to batch entitlements into a single request? How does this flag actually work in practice?
No it’s the same endpoints.
Basically if a user is requesting an access profile containing entitlement1 and entitlement2, I would like IdN to send a single request to the endpoint with both entitlement in the request.
What currently happens is IdN will send two request, one for entitlement1 and another one for entitlement2
Ok, as per doc what I understood is, when you have different entitlement types and need to send single request to the target system for all the entitlement assignment then setting up addRemoveEntInSingleReq = true will work.
But here you have one entitlement type i.e permission and you are assigning two/more permissions of same entitlement type. So, this is working as expected I believe. SailPoint is creating two separate plans for each entitlement. Also, you no need to have seperate API calls for each entailment. Single API call should work for all the entitlement assignments.