create_tasks_batch
Bulk-create multiple tasks in one request to a Kanboard project. Accepts 1-100 tasks, returns lists of created and failed tasks for partial failure handling.
Instructions
Bulk-create tasks in a Kanboard project using a single JSON-RPC batch request. Accepts 1–100 tasks per call. Non-atomic: partial failure is possible — check failed[] for per-task errors. Optional fields (column_id, owner_id, category_id, swimlane_id) fall back to .kanboard.yaml defaults when not provided. Returns { created: [...], failed: [...] } — never throws on partial failure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Kanboard project id (overrides .kanboard.yaml). | |
| project_identifier | No | Kanboard project identifier string (overrides .kanboard.yaml). | |
| tasks | Yes | Array of task creation inputs. 1..100 items. Non-atomic: partial failure possible. Inspect failed[] for per-task errors. |