List Analytics Reports
asc_list_analytics_reportsList analytics reports by request ID. Filter by category, limit, or use pagination to browse available reports.
Instructions
List analytics reports available under an analytics report request. Call asc_request_analytics_reports first to obtain requestId.
Args:
requestId (string, required): The analytics report request ID
category (string, optional): Filter by category
limit (number): Maximum number of reports to return (default 20, max 200)
nextUrl (string, optional): Pagination URL returned by a previous call
Returns: { "count": number, "items": [ { "reportId": string, // pass to asc_get_analytics_report_data "name": string, "category": string } ], "nextUrl": string | undefined }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to return (default 20, max 200). | |
| nextUrl | No | The nextUrl value returned by a previous call to this tool. Pass it back unchanged to fetch the next page. Omit for the first page. | |
| category | No | Filter by report category: APP_USAGE | APP_STORE_ENGAGEMENT | COMMERCE | FRAMEWORK_USAGE | PERFORMANCE. | |
| requestId | Yes | The analytics report request ID returned by asc_request_analytics_reports. |