Viewing Process Information

  • The Apps Script API provides methods to list your script processes.

  • Theprocesses.list method returns metadata for processes you have run.

  • Theprocesses.listScriptProcesses method returns metadata for processes run from a specific script project.

  • Both methods can be filtered to narrow down the results.

This section provides an overview of the Apps Script API methods you can useto list your scriptprocesses.

API method overview
List your processes

processes.list

Results: Returns an array ofProcess objects, each containing the metadata for a process you have run. This information includes the process type, status, start time, and duration.

Options: You can define and provide aListUserProcessFilter object to filter the process list. Only processes which matchall of the filter conditions are returned.

List a project's processes

processes.listScriptProcesses

Results: Returns an array ofProcess objects, each containing the metadata for a process run from a specifed script project. This information includes the process type, status, start time, and duration.

Options: You can define and provide aListScriptProcessesFilter object to filter the process list. Only processes which matchall of the filter conditions are returned.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-11 UTC.