Reputation: 504
Until 1,5 week ago, I was getting all user statuses from SuccessFactors OData User Entity via REST GET
https://localhost:443/odata/v2/User
Now I noticed that inactive users (where status = 'f' )are not returned by this.
Does anyone have any information on this issue?
Thanks
Upvotes: 2
Views: 2964
Reputation: 46
It's not an issue. Success Factors does not return inactive users if not told.
You have to add a filter if you want to get inactive users.
https://<hostname>/odata/v2/User?$filter=status in 'active','inactive'&$format=JSON
Here is list of statuses:
Upvotes: 3