add-label
Associate a specific label with a Trello card by providing the card ID and label ID. Simplify card organization and management on Trello boards.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes | ID of the card to add the label to | |
labelId | Yes | ID of the label to add |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to add the label to",
"type": "string"
},
"labelId": {
"description": "ID of the label to add",
"type": "string"
}
},
"required": [
"cardId",
"labelId"
],
"type": "object"
}