Viewing Process Information

Stay organized with collections Save and categorize content based on your preferences.

This section provides an overview of the Apps Script API methods you can use to list your script processes.

API method overview
List your processes

processes.list

Results: Returns an array of Process 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 a ListUserProcessFilter object to filter the process list. Only processes which match all of the filter conditions are returned.

List a project's processes

processes.listScriptProcesses

Results: Returns an array of Process 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 a ListScriptProcessesFilter object to filter the process list. Only processes which match all of the filter conditions are returned.