
JustinC.61274 (Customer) asked a question.
Using postman, i can list all users, find a user, and list all deprovisioned user, but i would like to make a call to find a specific deprovisioned user.
Using as part of larger cleanup process, i need to see the status of the user, but simply doing a search omits deprovisioned users.
Listing deprovisioned users of, say, 10k users, means the there is a limit to what is shown.
in my test of /api/v1/users?filter=status eq "DEPROVISIONED", the users arent there, so I assume its on other pages instead.
It also looks like i cant do a search for a user AND filter by status.
Is there a better workflow or alternative method to achieve this goal?

an and may work on your filter
filter=status eq "DEPROVISIONED" and profile.login eq "login@example.com"
Maybe a search or q would work
search=profile.login eq "login@example.com"
q=profile.email eq "email@example.com"
ref:
https://developer.okta.com/docs/reference/api/users/#list-users-with-search
https://developer.okta.com/docs/reference/api/users/#list-users-with-a-filter