create_card
Create a new card on a ScrumDo board with summary, description, points, due date, assigned column, sprint, assignees, labels, and custom fields.
Instructions
Create a new card on the board.
Args: summary: Card title / summary (required). description: Rich text description (markdown supported). points: Story points / estimate. due_date: Due date in YYYY-MM-DD format. cell_id: Board column to place the card in. iteration_id: Iteration/sprint to assign the card to. assignee_ids: List of user IDs to assign. Use list_members() to find ids. label_ids: List of label IDs to attach. extra_fields: Custom field values as {field_id: value} dict.
Returns the full created card object including its assigned reference (e.g. 'ON-915').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| summary | Yes | ||
| description | No | ||
| points | No | ||
| due_date | No | ||
| cell_id | No | ||
| iteration_id | No | ||
| assignee_ids | No | ||
| label_ids | No | ||
| extra_fields | No |