Hi!
I’m using this API
https://miprepschool.incidentiq.com/api/v1.0/users
following the documentation in
https://incidentiq.stoplight.io/docs/v1/cf6fa0da7eb82-list-users
but I’m getting just the first 20 items.
Could you someone let me know how to access the next page?
I’m doing something like below (python):
params = {
'PageIndex': 2,
'PageSize': 20
}
try:
response = requests.get(url, headers=headers, params=params)
or trying different variations in the params or directly in the url, but not having any luck.
Thank you!