I am using Okta for SSO. I want to list all Okta users, but the API has a max limit of 200. So I need to use pagination here.
Initial I used the URL
{{url}}/api/v1/users?limit=200
Not I got the response with the first 200 users, and a next link in the response header. The next link was like
{{url}}/api/v1/users?after=1uid&limit=200
Please have a look at the above after
value. Character 1
got prepended to the last user ID. Why is that?