TaskImportResultDto
The outcome of a task CSV import
Properties
| Name | Type | Description |
|---|---|---|
| createdCount | integer | Number of tasks created |
Number of tasks created | ||
| updatedCount | integer | Number of existing tasks updated |
Number of existing tasks updated | ||
| failedCount | integer | Number of selected rows that failed to import |
Number of selected rows that failed to import | ||
| notesCreated | integer | Number of task notes created from the Notes column |
Number of task notes created from the Notes column | ||
| rows | array of TaskImportRowResultDto | Per-row outcomes, in selection order |
Per-row outcomes, in selection order | ||
JSON Example
{
"createdCount": 0,
"updatedCount": 0,
"failedCount": 0,
"notesCreated": 0,
"rows": [
{
"rowId": "...",
"name": "...",
"action": "...",
"success": "...",
"taskCode": "..."
}
]
}