Fetch custom report data
reports_custom_report_dataFetch rows from a custom report by its view name. Control output size with pageLimit and navigate pages using firstIndex for efficient data retrieval.
Instructions
Fetches the rows of a specific custom report by its view name (the viewName from reports_custom_reports_list). Columns and output size depend entirely on how the report was built, so prefer a small pageLimit on first call. Default output is condensed to columns, row values, and navigation info; raw: true returns the full table response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Return the full raw table response (column CSS, sort state, template config) instead of the condensed columns/rows/navigation view. | |
| crview | Yes | Custom report view name — the `viewName` of a report returned by reports_custom_reports_list (e.g. CRVIEW_1746706833342). | |
| pageLimit | No | Rows per page (API param _PL; server default 25, cap 500). Defaults to the server's configured default page size, clamped to 500. | |
| firstIndex | No | First row index to fetch, 1-based and inclusive (API param _FI). Increment by pageLimit to fetch the next page of rows. |