Fetch query report data
reports_query_report_dataRetrieve query report rows and column metadata by numeric report ID. Use with a limit to control output size and page through results.
Instructions
Fetches the rows and column metadata of a specific query report by its numeric report ID (from reports_query_reports_list). Rows are returned as-is: their shape and output size depend entirely on the report's underlying query, so prefer a small limit on first call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows per response (server cap is 1000). Defaults to the server's configured default page size. | |
| reportId | Yes | Numeric query report ID — the `id` of a report returned by reports_query_reports_list. | |
| startIndex | No | Starting row index to fetch from. Increment by `limit` on each call to page through the report. |