update_card
Modify card properties in Favro, including name, description, custom fields, tasks, and archive status to keep project information current.
Instructions
Update a card's properties.
Args: card: Card ID, sequential ID (#123), or name board: Board ID or name (needed for sequential ID or name lookup) name: New card name description: New detailed description archived: Archive or unarchive the card custom_fields: List of custom field updates. Each dict should contain 'customFieldId' and the appropriate value field for the field type: - Text: {'customFieldId': '...', 'value': 'text'} - Number/Rating: {'customFieldId': '...', 'total': 5} - Link: {'customFieldId': '...', 'link': {'url': '...', 'text': '...'}} - Checkbox: {'customFieldId': '...', 'value': True} - Date: {'customFieldId': '...', 'value': '2024-01-15'} - Status: {'customFieldId': '...', 'value': ['itemId1', 'itemId2']} tasks: List of task updates. Each dict should contain 'task_id' and optionally 'completed' (bool) or 'name' (str) to update add_tasklist: Name of a new task list to create on this card add_task: Create a new task: {'tasklist_id': '...', 'name': '...'}
Returns: The updated card details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| card | Yes | ||
| board | No | ||
| name | No | ||
| description | No | ||
| archived | No | ||
| custom_fields | No | ||
| tasks | No | ||
| add_tasklist | No | ||
| add_task | No |