script_projects_create
Create a new Google Apps Script project by specifying a parent project ID and a title for the script. Enables project management through the Google Apps Script API.
Instructions
Create a new Google Apps Script project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parentId | Yes | The ID of the parent project. | |
title | Yes | The title of the new script project. |
Input Schema (JSON Schema)
{
"properties": {
"parentId": {
"description": "The ID of the parent project.",
"type": "string"
},
"title": {
"description": "The title of the new script project.",
"type": "string"
}
},
"required": [
"parentId",
"title"
],
"type": "object"
}