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?