searchCards
Query and retrieve specific cards from Heptabase using tags, whiteboard IDs, content types, or date ranges for efficient data analysis and organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentType | No | ||
dateRange | No | ||
query | No | ||
tags | No | ||
whiteboardId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contentType": {
"enum": [
"text",
"image",
"link"
],
"type": "string"
},
"dateRange": {
"additionalProperties": false,
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
},
"query": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"whiteboardId": {
"type": "string"
}
},
"type": "object"
}