list_cards
Retrieve cards from a ScrumDo board with filters by column, sprint, assignee, label, or status. Returns paginated results with card details including summary, points, and custom fields.
Instructions
List cards on the board with optional filters.
Args: cell_id: Filter by board column (cell) id. iteration_id: Filter by iteration/sprint id. assignee: Filter by assignee username or email. label: Filter by label name. status: Filter by status string. page: Page number (default 1). limit: Results per page (default 25, max 100).
Returns a dict with count, next/previous page URLs, and items list. Each item includes id, local_id, summary, points, cell, assignees, labels, extra_fields (custom fields), and created/updated timestamps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cell_id | No | ||
| iteration_id | No | ||
| assignee | No | ||
| label | No | ||
| status | No | ||
| page | No | ||
| limit | No |