script_projects_get
Retrieve metadata for a Google Apps Script project by providing the script ID. Automates OAuth authentication and supports partial response fields for efficient data fetching.
Instructions
Get metadata of a Google Apps Script project. OAuth authentication is handled automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alt | No | Data format for response. | json |
fields | No | Selector specifying which fields to include in a partial response. | |
prettyPrint | No | Returns response with indentations and line breaks. | |
quotaUser | No | Arbitrary string assigned to a user for quota purposes. | |
scriptId | Yes | The ID of the script project to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"alt": {
"default": "json",
"description": "Data format for response.",
"enum": [
"json"
],
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"type": "string"
},
"prettyPrint": {
"default": true,
"description": "Returns response with indentations and line breaks.",
"type": "boolean"
},
"quotaUser": {
"description": "Arbitrary string assigned to a user for quota purposes.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script project to retrieve.",
"type": "string"
}
},
"required": [
"scriptId"
],
"type": "object"
}