You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I need to fetch alerts since the beginning of the year. I can't handle pagination. Keeping the default limit of 25 results per page, here's a code sample:
According to the documentation there should a pagination_token method, but there is no such method. However, the available methods are: APIListObject, Incidents, Limit, More, Offset, Total. The Moremethods shows that there's _more_ pages to fetch, however theOffset. method and the Total` method return both zero.
Any hints on how to handle pagination in this case?
The text was updated successfully, but these errors were encountered:
The more field will always be true or false, indicating whether there are more resources matching the query than present in the response (because of the request's limit). If true, you may want to make subsequent requests with a different offset until more is false in order to retrieve all of the resources.
Hello! I need to fetch alerts since the beginning of the year. I can't handle pagination. Keeping the default limit of 25 results per page, here's a code sample:
According to the documentation there should a
pagination_token
method, but there is no such method. However, the available methods are:APIListObject
,Incidents
, Limit,
More,
Offset,
Total. The
Moremethods shows that there's _more_ pages to fetch, however the
Offset. method and the
Total` method return both zero.Any hints on how to handle pagination in this case?
The text was updated successfully, but these errors were encountered: