I'm building an application which pulls down incident listings for my org via Pagerduty's REST API.
The GET /incidents
endpoint does respond with more
, offset
, and other keys that are indicative of pagination being supported, and it does make intuitive sense on this endpoint, but I haven't been able to actually paginate these results:
- Passing
offset
orlimit
as a query param returns a 403 - Passing these in various forms in request headers just gets ignored entirely
Is there a way to paginate these results at all?