sheets_get_metadata
Retrieve metadata from Google Sheets, including sheet names, IDs, and properties, by providing the spreadsheet ID for efficient data management.
Instructions
Get metadata about a Google Sheets spreadsheet including sheet names, IDs, and properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spreadsheetId | Yes | The ID of the spreadsheet (found in the URL after /d/) |
Input Schema (JSON Schema)
{
"properties": {
"spreadsheetId": {
"description": "The ID of the spreadsheet (found in the URL after /d/)",
"type": "string"
}
},
"required": [
"spreadsheetId"
],
"type": "object"
}