update_card
Modify card fields such as title, description, story points, due date, iteration, assignees, and labels, leaving unspecified fields unchanged.
Instructions
Update one or more fields on an existing card.
Only the fields you provide will be changed — omitted fields are untouched.
Args: card_ref: Card reference, e.g. 'ON-914'. summary: New title. description: New description (markdown). points: New story points. due_date: Due date in YYYY-MM-DD format. Pass empty string to clear. iteration_id: Move card to this iteration/sprint id. Use list_iterations() to find ids. assignee_ids: Replace assignee list. Use list_members() to find ids. label_ids: Replace label list. extra_fields: Merge into existing custom fields. Existing keys not mentioned here will be preserved.
Returns the full updated card object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| card_ref | Yes | ||
| summary | No | ||
| description | No | ||
| points | No | ||
| due_date | No | ||
| iteration_id | No | ||
| assignee_ids | No | ||
| label_ids | No | ||
| extra_fields | No |