delete_card
Remove a task from a Focalboard workspace permanently by specifying the card ID and board ID to clean up completed or unnecessary items.
Instructions
Delete a card (task) from a board permanently.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cardId | Yes | The ID of the card to delete | |
| boardId | Yes | The ID of the board the card belongs to |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "The ID of the board the card belongs to",
"type": "string"
},
"cardId": {
"description": "The ID of the card to delete",
"type": "string"
}
},
"required": [
"cardId",
"boardId"
],
"type": "object"
}