Success Factors REST API OData Entity User does not return inactive users

1.5k Views Asked by At

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

1

There are 1 best solutions below

2
David Ramba On BEST ANSWER

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:

list of statuses