TRUECALC
MCP

data:clearFilter

Clears the filter.

Parameters

NameTypeRequiredDescription
sheetstringyes

Returns

NameTypeRequiredDescription
removedbooleanyesA 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"
  ]
}

On this page