import_tasks_csv
Import tasks from CSV into Dart AI with validation and parallel creation. Preview and fix errors using validate-only mode before actual import.
Instructions
Import tasks from CSV file with validation and parallel creation. CRITICAL: ALWAYS use validate_only=true first! Production safety: validate → fix errors → import.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| csv_data | No | CSV data as string (use this OR csv_file_path) | |
| csv_file_path | No | Path to CSV file (use this OR csv_data) | |
| dartboard | Yes | Dartboard dart_id or name for all imported tasks | |
| column_mapping | No | Custom column name mapping (e.g., {"Task Name": "title", "Owner": "assignee"}) | |
| validate_only | No | Preview mode (default: TRUE for production safety). Returns validation errors and preview without creating tasks. | |
| continue_on_error | No | Continue importing valid rows even if some fail (default: true) | |
| concurrency | No | Parallel task creation (default: 5, range: 1-20) |