Google Super
GOOGLESUPER_FIND_WORKSHEET_BY_TITLE
Finds a worksheet by its exact, case-sensitive title within a Google Spreadsheet; returns a boolean indicating if found and the complete metadata of the entire spreadsheet, regardless of whether the target worksheet is found.
Remote googlesuper
Other tools also called GOOGLESUPER_FIND_WORKSHEET_BY_TITLE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"examples": [
"Sheet1",
"Q3 Report",
"Customer Data"
],
"description": "The exact, case-sensitive title of the worksheet (tab name) to find."
},
"spreadsheet_id": {
"type": "string",
"title": "Spreadsheet Id",
"examples": [
"1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789_drivE",
"your_actual_spreadsheet_id"
],
"description": "The unique identifier of the Google Spreadsheet. This ID is part of the spreadsheet's URL."
}
}
}