TaskClientMatchSummaryDto
How a foreign task export's client names matched against existing clients.
Unmatched names still convert — the native import flags them for review.
Properties
| Name | Type | Description |
|---|---|---|
| matchedClientCount | integer | Number of distinct client names that matched an existing client |
Number of distinct client names that matched an existing client | ||
| unmatchedClientCount | integer | Number of distinct client names with no matching client |
Number of distinct client names with no matching client | ||
| unmatchedRowCount | integer | Number of task rows whose client name didn't match |
Number of task rows whose client name didn't match | ||
| unmatchedClientNames | array of string | The unmatched client names (capped at 50) |
The unmatched client names (capped at 50) | ||
JSON Example
{
"matchedClientCount": 0,
"unmatchedClientCount": 0,
"unmatchedRowCount": 0,
"unmatchedClientNames": [
"string"
]
}