getCardsByArea
Retrieve cards within a specific area on a Heptabase whiteboard using coordinates and radius for focused data analysis and organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
radius | No | ||
whiteboardId | Yes | ||
x | Yes | ||
y | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"radius": {
"type": "number"
},
"whiteboardId": {
"type": "string"
},
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"required": [
"whiteboardId",
"x",
"y"
],
"type": "object"
}