create-list
Add a new list to a Trello board by specifying the board ID, list name, and position. Simplify task organization and project management through structured workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board to create the list in | |
name | Yes | Name of the list | |
position | No | Position of the list (e.g. "top", "bottom", or a number) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the board to create the list in",
"type": "string"
},
"name": {
"description": "Name of the list",
"type": "string"
},
"position": {
"description": "Position of the list (e.g. \"top\", \"bottom\", or a number)",
"type": "string"
}
},
"required": [
"boardId",
"name"
],
"type": "object"
}