get_card
Retrieve detailed information about a specific Focalboard card using its unique identifier to access card properties and content.
Instructions
Get detailed information about a specific card by its ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cardId | Yes | The ID of the card to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"cardId": {
"description": "The ID of the card to retrieve",
"type": "string"
}
},
"required": [
"cardId"
],
"type": "object"
}