
g30vp (g30vp) asked a question.
https://developer.okta.com/docs/reference/api/users/*list-users
The Developer's Guide said get-users API can load up to 200 Users(maximum).
But I want to get the entire users to check automatically their status and do something using this data. (about 2000 accounts)
Is there any way to unlimit the maximum of get/users API?

Hi @g30vp (g30vp) , Thank you for reaching out to the Okta Community!
The "200" limit is hard-coded. You will have to use Pagination to get to all the data that you require.
There is a reference to Pagination in the following documentation:
https://developer.okta.com/docs/reference/core-okta-api/#authentication
When running the API call you'll get the response with maximum number of users (200), but the header will also include a link to the next page.
It should look like this:
<https://yourORGnameHERE.okta.com/api/v1/users?after=200ul276zt980fghjX0x7&limit=200>; rel="next"
You can also suggest a Feature Enhancement on the Okta Community page by going to the Community→ Ideas tab. Features suggested in our community are reviewed and can be voted and commented on by other members. High popularity will increase the likelihood of it being picked up by the Product Team and it being implemented.
More details here:
https://support.okta.com/help/s/blog/a674z000001cj7YAAQ/okta-ideas-faq?language=en_US
Hope it helps!