MCP
data:clearFilter
Clears the filter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sheet | string | yes | — |
Returns
| Name | Type | Required | Description |
|---|---|---|---|
removed | boolean | yes | A no-op, false if sheet had no filter. |
Schema
Request payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payload",
"type": "object",
"properties": {
"sheet": {
"type": "string"
}
},
"required": [
"sheet"
]
}Response payload, as JSON Schema:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Output",
"type": "object",
"properties": {
"removed": {
"description": "A no-op, `false` if `sheet` had no filter.",
"type": "boolean"
}
},
"required": [
"removed"
]
}