SCIM saas connector disable issue

Hi All,

We have an application which supports SCIM but does not have any soft delete API.The user automatically gets deleted when you trigger disable operation from sailpoint.

However the issue is after deleting it again tries to fetch the user as per the logs and since the user is deleted there is no response and it gives us 404 error .

IS there any way to stop the single account aggregation after the disable operation in SCIM SAAS connector?

Hi @schattopadhy ,

It seems like adding
NO_RANDOM_ACCESS feature string to your connector solves your problem of disabling single account aggregation after an operation try this one

Reference

Documentation

Thanks in advance
Avinash Mulpuru

@amulpuru i tried but it still throws an error but deletes the user in target application

@schattopadhy

As per the documentation,

NO_RANDOM_ACCESS: The source does not support random access and the getObject() methods should not be called and expected to perform.

using this it would not call the getObject method and single aggregation wont be performed.

Did you checked that if the full aggregation is trying to find the user or single account aggregation.

@msingh900

The aggregation is getting triggered after the disable operation is being performed

Have you added NO_RANDOM_ACCESS?

Can you please confirm that you have added NO_RANDOM_ACCESS to featurestring list for the connector as per doc and other reference I see it working

yes but in my case it does not work