TRUECALC
MCP

chart:remove

Removes a chart.

Parameters

NameTypeRequiredDescription
chartIdstringyesThe chart to remove.

Returns

NameTypeRequiredDescription
chartIdstringyes
removedbooleanyes

Schema

Request payload, as JSON Schema:

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Payload",
  "type": "object",
  "properties": {
    "chartId": {
      "description": "The chart to remove.",
      "type": "string"
    }
  },
  "required": [
    "chartId"
  ]
}

Response payload, as JSON Schema:

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Output",
  "type": "object",
  "properties": {
    "chartId": {
      "type": "string"
    },
    "removed": {
      "type": "boolean"
    }
  },
  "required": [
    "chartId",
    "removed"
  ]
}

On this page