sheets_delete_sheet
Remove unwanted sheets from a Google Sheets document by specifying the spreadsheet ID and sheet ID, streamlining document organization and management.
Instructions
Delete a sheet from a Google Sheets spreadsheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sheetId | Yes | The ID of the sheet to delete (use sheets_get_metadata to find sheet IDs) | |
spreadsheetId | Yes | The ID of the spreadsheet (found in the URL after /d/) |
Input Schema (JSON Schema)
{
"properties": {
"sheetId": {
"description": "The ID of the sheet to delete (use sheets_get_metadata to find sheet IDs)",
"type": "number"
},
"spreadsheetId": {
"description": "The ID of the spreadsheet (found in the URL after /d/)",
"type": "string"
}
},
"required": [
"spreadsheetId",
"sheetId"
],
"type": "object"
}