ISC - Aggregation filter on SCIM 2.0 SAAS connector

Hello,

Is it possible to aggregate only active account on SCIM 2.0 SAAS connector ?

I tried to use the API to update source partially and i had a response 200, this is the body:

[
  {
    "op": "add",
    "path": "/connectorAttributes/filterString",
    "value":"active != false"
      }
]

I also tried:

[
  {
    "op": "add",
    "path": "/connectorAttributes/filterString",
    "value":"active != false"
      }
]

But the deactivated accounts are still there. Do you have any clu ?

Thanks

Hi @ragavi ,
Can you update the filter to below and run the call again and let me know if this works


[
  {
    "op": "add",
    "path": "/connectorAttributes/filterString",
    "value": "active eq true"
  }
]

Hi @Prashanth0707 ,
I tried and it didn’t work. The deactivated accounts are still there after the aggregation.

Hi @ragavi ,
Is the below option enabled. Also please reset the source accounts if needed and try to aggregate again!

Hope this helps!!

Hi @Prashanth0707, yeah this option was enabled, how can i reset the source accounts ?

Hi @ragavi ,
You can use the below API call to reset the source accounts

Remove Accounts

Let me know if this resolved the issue!

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