Ioanna Katsanou
Ioanna Katsanou

Reputation: 504

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

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

Answers (1)

David Ramba
David Ramba

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:

list of statuses

Upvotes: 3

Related Questions