I was onboarding the Okta application using the web services connector. After running the aggregation, all user statuses only show as “Enabled.” However, most of the user statuses should be STAGED, PROVISIONED, ACTIVE, or SUSPENDED. According to the SailPoint documentation, I placed all these values inside Connection Settings > Account Enable Status Attribute. But after running the aggregation, all user statuses changed from “Enabled” to “Disabled.”
How can I fix this issue so that the correct status values (STAGED, PROVISIONED, ACTIVE, SUSPENDED) are properly populated in the user status field?
Hey @sachink4 The Account Enable Status Attribute can hold multiple values. Are you adding multiple statuses by comma separation? Like status = STAGED, PROVISIONED, ACTIVE,SUSPENDED
If you already tried the above, can you empty this field and try to do the account aggregation? I have a web service source where I have many statuses like pending, started, enabled, and deactivated. So I haven’t added the Account Enable Status field, but aggregation is pulling all the accounts for me.
I already completed this process without adding any additional fields, but all user accounts still appear as “Enabled.” However, in the target application, some user accounts are actually in a “Suspended” state. any other way to fix this issue?
If you configured as mentioned by @Santhakumar still it is not working then I recommend you to go ahead with Web Services After Operation Rule to configure enable/disable account for this scenario.
Please refer below snippet as a example
String status = (String) map.get(“status”);
if (“ACTIVE”.equalsIgnoreCase(status) ||
“PROVISIONED”.equalsIgnoreCase(status) ||
“STAGED”.equalsIgnoreCase(status)) {