API Docs / Schemas / TaskImportResultDto

TaskImportResultDto

The outcome of a task CSV import

Properties

Name Type Description
createdCountinteger

Number of tasks created

Number of tasks created

updatedCountinteger

Number of existing tasks updated

Number of existing tasks updated

failedCountinteger

Number of selected rows that failed to import

Number of selected rows that failed to import

notesCreatedinteger

Number of task notes created from the Notes column

Number of task notes created from the Notes column

rowsarray 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": "..."
    }
  ]
}

Used By Operations