move-all-cards-in-list
Transfer all cards from a Trello list to a designated list on another board, simplifying task reorganization and project management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destinationBoardId | Yes | ID of the destination board | |
destinationListId | Yes | ID of the destination list | |
listId | Yes | ID of the source list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"destinationBoardId": {
"description": "ID of the destination board",
"type": "string"
},
"destinationListId": {
"description": "ID of the destination list",
"type": "string"
},
"listId": {
"description": "ID of the source list",
"type": "string"
}
},
"required": [
"listId",
"destinationBoardId",
"destinationListId"
],
"type": "object"
}