clear_google_sheet_range
Clear values from one explicit Google Sheet range.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
model_name | Annotated[str, Field(description='Name of the Bridge Town model.')] | Yes | — | |
cell_range | Annotated[str, Field(min_length=1, max_length=200, description='Explicit A1 range to clear.')] | Yes | — | |
spreadsheet_id | `Annotated[str | None, Field(description=‘Google Spreadsheet ID; provide this or source_name.’)]` | No | None |
source_name | `Annotated[str | None, Field(description=‘Connected Sheet data-source name; provide this or spreadsheet_id.’)]` | No | None |
workspace_id | `Annotated[str | None, Field(description=WORKSPACE_ID_FIELD_DESCRIPTION)]` | No | None |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
spreadsheet_id(string)cleared_range(string)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "clear_google_sheet_range", "arguments": { "model_name": "forecasts", "cell_range": "Forecast!A2:B100", "spreadsheet_id": "1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789ABCDEFG" }}Response
Section titled “Response”{ "spreadsheet_id": "1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789ABCDEFG", "cleared_range": "Forecast!A2:B100"}- Module:
Google Sheets - Requires authentication via API token or Auth0 JWT.