script_projects_deployments_list
Retrieve and manage deployments for a Google Apps Script project by specifying its ID, enabling pagination and field selection for streamlined project tracking.
Instructions
Lists the deployments of an Apps Script project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Selector specifying which fields to include in a partial response. | |
pageSize | No | The number of deployments to return per page. | |
pageToken | No | Token for pagination. | |
prettyPrint | No | Returns response with indentations and line breaks. | |
scriptId | Yes | The ID of the script project. |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"type": "string"
},
"pageSize": {
"description": "The number of deployments to return per page.",
"type": "integer"
},
"pageToken": {
"description": "Token for pagination.",
"type": "string"
},
"prettyPrint": {
"description": "Returns response with indentations and line breaks.",
"type": "boolean"
},
"scriptId": {
"description": "The ID of the script project.",
"type": "string"
}
},
"required": [
"scriptId"
],
"type": "object"
}