Update a card
kanbanzone_update_cardUpdate an existing card's fields including title, owner, due date, labels, and custom fields. Only specified fields are changed.
Instructions
Update fields on an existing card. Only included fields are changed.
Args:
id (string, required): card ObjectId.
board (string, optional): board publicId — required for mirror cards to disambiguate.
title (string, optional)
description (string, optional)
owner (string, optional): account email or ObjectId.
label (string, optional): label name (e.g. "Enhancement") or ObjectId.
dueAt (string, optional): ISO date or datetime.
customFields (array, optional): list of { label, value } pairs.
labelmatches the custom-field name configured on the board.
Examples:
"Reassign card 670... to bob@example.com"
"Set the due date on card 670... to 2025-06-01"
"Set the Project Code custom field on card 670... to ABC-123"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| board | No | ||
| title | No | ||
| description | No | ||
| owner | No | ||
| label | No | ||
| dueAt | No | ||
| customFields | No |