archive-card
Archive Trello cards automatically by specifying the card ID, streamlining board organization and reducing clutter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes | ID of the card to archive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to archive",
"type": "string"
}
},
"required": [
"cardId"
],
"type": "object"
}