getCardContent
Extract and process content from Heptabase backups using identified card IDs. Supports raw, markdown, and JSON formats for flexible data integration and analysis.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cardId | Yes | ||
| format | No | markdown | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "cardId": {
      "type": "string"
    },
    "format": {
      "default": "markdown",
      "enum": [
        "raw",
        "markdown",
        "json"
      ],
      "type": "string"
    }
  },
  "required": [
    "cardId"
  ],
  "type": "object"
}