?
deleteGoogleSheetRows
Delete a range of rows from a Google Spreadsheet.
mindstudio.deleteGoogleSheetRows({ documentId, startRow, endRow }) → Result
Delete a range of rows from a Google Spreadsheet.
Parameters
documentId
string
RequiredGoogle Spreadsheet ID or URL
sheetName
string
Sheet/tab name (defaults to first sheet)
startRow
string
RequiredFirst row to delete (1-based, inclusive)
endRow
string
RequiredLast row to delete (1-based, inclusive)
connectionId
string
Google OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.deleteGoogleSheetRows({ documentId: /* ... */, startRow: /* ... */, endRow: /* ... */ });