SCIM connector config to add groups and delete/mover execution

Hi folks,
Working on SCIM connector for the first time so trying to understand a few use cases. User creation and update was pretty simple and works directly by adding policy.
Now i need to configure 2 more things.

  1. if a user is terminated in SailPoint, i need to delete his account in SCIM target application - what needs to be done for this at application level. Would a simple delete and disable policy suffice ? What attributes are needed as part of this policy.
  2. By default users needs to be added to a few groups in target. How can i add this to users via the SCIM connector.

Any help is appreciated

Hi @rohit_jaiswal1 ,
Please find my answers inline.

  1. if a user is terminated in SailPoint, i need to delete his account in SCIM target application - what needs to be done for this at application level. Would a simple delete and disable policy suffice ? What attributes are needed as part of this policy.
    Ans: There is no particular action required for it from SailPoint end. Disable/Delete Policy might not be required because the only attribute required for Delete endpoint is userID (nativeIdentity). Please find the below screenshot for RFC document which mentions about Delete Operation,

  2. By default users needs to be added to a few groups in target. How can i add this to users via the SCIM connector.
    Ans: For even Add Users and Remove Users you might not require any specific changes in Sailpoint. The SCIM protocol adds user to a group via the group endpoint. And the only prerequisite for adding and removing to work correctly is that the entitlements should be onboarded properly into IIQ. In order to enable PATCH operation in IIQ, add the following entry in application.xml from the debug page. Also find the screenshot from RFC with sample PATCH operation

<entry key="usePatch">
  <value>
    <Boolean>true</Boolean>
  </value>
</entry>

Please find the RFC document here : RFC 7644 - System for Cross-domain Identity Management: Protocol

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.