script_projects_deployments_get
Retrieve a specific deployment of a Google Apps Script project by providing the script ID and deployment ID. Simplifies deployment management via the Google Apps Script API.
Instructions
Get a deployment of an Apps Script project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment to retrieve. | |
scriptId | Yes | The ID of the script project. |
Input Schema (JSON Schema)
{
"properties": {
"deploymentId": {
"description": "The ID of the deployment to retrieve.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script project.",
"type": "string"
}
},
"required": [
"scriptId",
"deploymentId"
],
"type": "object"
}