recent_executions
List recent Apps Script executions with status, start time, and duration. Filter by function or show only failures to quickly identify problems in script runs.
Instructions
List recent executions of an Apps Script project (function, status, start time, duration). Optionally filter to failures. Uses execution metadata — no extra scope, and does not include console.log output.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageSize | No | Max executions to return (API max 50, default 20). | |
| scriptId | Yes | The ID of the script project. | |
| pageToken | No | Pagination token from a previous response. | |
| functionName | No | Filter to executions of a specific function. | |
| onlyFailures | No | Only return failed / timed-out / canceled executions. |