-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: support pagination for endpoint "/analytics/raw/incidents" #136
Comments
This seems like more of a request to modify the API itself; I could not find any documented endpoint
It would be good to know what the desired use case is here; I could pass that along to our product team. To iterate over incidents, |
The desired use case is to iterate over enriched incident data, which is provided by the endpoint |
@NikMohorko Thank you; I understand now, seeing the options of that endpoint and what it does. It's not currently supported because that particular API doesn't provide either of the standard methods of pagination; there is no For what it's worth, the endpoint is quite permissive with the I'm on the fence about adding non-generic design to this API client, beyond the extent to which it already has the machinery for dealing with REST API v2's anti-patterns and special exceptions that was needed to improve its usability. The design philosophy has been "don't make an API for the API"; the focus has been on the patterns that apply the most broadly. That approach has saved the most effort both for end users and in terms of the maintenance of this API client. Providing abstractions for each different resource type within an API, I've noticed in a few other API clients, leads to a more sprawling codebase that requires more effort to maintain, i.e. the necessity to add a new abstraction to support every new resource type. If we see more new ways of doing things in the REST API that deviate from the standard documented ways of doing things (absent the additional documentation of them as standards that can apply to other new APIs) I might soften my position and implement them, but for now I'm hesitant. |
Hi!
I'm trying to get multiple pages of data from endpoint
/analytics/raw/incidents
. I get the following response:The text was updated successfully, but these errors were encountered: