Additional parameters

Paginated output

To generate a paginated report, specify "paginate": true in the request body. By default, the value is false.

The response will include the total number of pages and the current page:

{
  "current_page": 2,
  "max_page": 150
}

To request a specific page, specify it in the request body:

{
  "paginate": true,
  "page": <page number>
}

Within one page, the report will contain 100 lines (or less if it's the last page). If you omit paginate, you will get a full unpaginated report. The parameters current_page and max_page will be null.