I get different results that I do not understand depending on how I call the api endpoint.
incidents_endpoint = url + f’/incidents?limit=20000’
-> 14 incidents
incidents_endpoint = url + f’/incidents?date_range=all’
-> 9 incidents, different than the first 14
incdents_enpoint = url + f’/incidents?date_range=all&limit=2000’
-> 100 incidents
How can I get all the incidents? (I have over 300, can’t ever seem to get more than 100). Is there some pagination? How does that work?