integer
The 1-based page number to fetch.
integer
default:"25"
Records per page, up to the maximum the endpoint allows.
Two response shapes
Which shape comes back depends on whether you sent either parameter:- Paginated envelope
- Plain array
Send
page, page_size, or both:Pagination in the request body
The log list endpoints takepage and page_size in the JSON body instead of the query string, because their filters do not fit in a URL. The parameters mean the same thing and take the same values.
For example, fetching the first page of 100 logs:
Paging through a full set
Readtotal from the first response to know how many pages to expect, then request each in turn.
Keep page_size the same across a sequence. Changing it partway through repeats or skips records, because the offset is derived from both values.