Stay organized with collections
Save and categorize content based on your preferences.
The Google Apps Script API lets you programmatically create, modify, and
deploy Apps Script projects—actions that otherwise require you to
use the Apps Script editor. Your apps can use the API to manage your
script projects, create and deploy new script versions, and monitor script
executions.
The Apps Script API also replaces and extends the Apps Script Execution API.
You can use the Apps Script API to execute Apps Script functions remotely,
just as you could with the Execution API.
Overview of the API
The Apps Script API is divided into several resources, each with a specific
purpose and set of requests you can make. These resources are the following:
projects — A
representation of a script project. The API provides methods to create,
read, monitor, and modify projects.
projects.deployments
— A representation of a script deployment. The API provides methods to
create, list, update, and delete script project deployments.
projects.versions
— A representation of a script project version. The API provides
methods to create and read project versions.
processes — A
representation of a script function execution. The API provides methods to
list existing processes and gather information about them, such as type
and current status.
scripts — The endpoint
that provides methods to remotely execute Apps Script functions.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-29 UTC."],[[["The Google Apps Script API allows programmatic management of Apps Script projects, including creation, modification, and deployment."],["This API enables remote execution of Apps Script functions and extends the capabilities of the Apps Script Execution API."],["Developers can utilize the API to manage script projects, deploy versions, and monitor script executions."],["Key resources within the API include projects, deployments, versions, processes, and scripts for comprehensive control."],["It's crucial to enable the API and grant access for third-party app management of your scripts."]]],[]]