Autoload: report list
autoload_get_reports_v2Retrieve paginated autoload reports with optional date filtering. Returns report IDs, timestamps, and statuses sorted by most recent first. Use to select a report and fetch its details.
Instructions
Returns a list of autoload reports (id, started_at, finished_at, status) with pagination and a filter by creation date. Sorted in descending order: the most recent report first. Read-only; the response contains a meta block with total/pages. Use it to find a report_id, then fetch details via autoload_get_report_by_id_v3 / autoload_get_report_items_by_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| per_page | No | Number of reports per page. Defaults to 50; the API allows up to 200, but it is capped at 100 here. | |
| page | No | Page number (integer ≥ 1). Defaults to the first page. | |
| date_from | No | Filter by report creation date "from" (inclusive), RFC3339 format, e.g. "2022-05-27T14:48:50.52Z". | |
| date_to | No | Filter by report creation date "to" (inclusive), RFC3339 format, e.g. "2022-05-27T14:48:50.52Z". |