script_projects_deployments_delete
Remove a deployment from a Google Apps Script project by specifying the script and deployment IDs, facilitating efficient project management and cleanup.
Instructions
Delete a deployment of an Apps Script project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment to delete. | |
scriptId | Yes | The ID of the script project. |
Input Schema (JSON Schema)
{
"properties": {
"deploymentId": {
"description": "The ID of the deployment to delete.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script project.",
"type": "string"
}
},
"required": [
"scriptId",
"deploymentId"
],
"type": "object"
}