list_script_processes
Retrieve and filter executed process details of a Google Apps Script by script ID, enabling easy monitoring, debugging, and analysis of script executions.
Instructions
List information about a script's executed processes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | No | Filter by deployment ID. | |
endTime | No | Filter by end time. | |
functionName | No | Filter by function name. | |
pageSize | No | The number of processes to return per page. | |
pageToken | No | Token for pagination. | |
scriptId | Yes | The ID of the script to list processes for. | |
startTime | No | Filter by start time. | |
statuses | No | Filter by process statuses. | |
types | No | Filter by process types. | |
userAccessLevels | No | Filter by user access levels. |
Input Schema (JSON Schema)
{
"properties": {
"deploymentId": {
"description": "Filter by deployment ID.",
"type": "string"
},
"endTime": {
"description": "Filter by end time.",
"type": "string"
},
"functionName": {
"description": "Filter by function name.",
"type": "string"
},
"pageSize": {
"description": "The number of processes to return per page.",
"type": "integer"
},
"pageToken": {
"description": "Token for pagination.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script to list processes for.",
"type": "string"
},
"startTime": {
"description": "Filter by start time.",
"type": "string"
},
"statuses": {
"description": "Filter by process statuses.",
"type": "string"
},
"types": {
"description": "Filter by process types.",
"type": "string"
},
"userAccessLevels": {
"description": "Filter by user access levels.",
"type": "string"
}
},
"required": [
"scriptId"
],
"type": "object"
}