move-list-to-board
Transfer a Trello list to a new board by specifying the list ID and destination board ID, enabling organized project management and resource allocation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the destination board | |
listId | Yes | ID of the list to move |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the destination board",
"type": "string"
},
"listId": {
"description": "ID of the list to move",
"type": "string"
}
},
"required": [
"listId",
"boardId"
],
"type": "object"
}