ImportJobClientDto
The outcome of a single client within an import job, including why it failed
Properties
| Name | Type | Description |
|---|---|---|
| externalId | string | The client ID from the external system (e.g., Xero contact ID) |
The client ID from the external system (e.g., Xero contact ID) | ||
| name | string | The client's name on the external platform. Null when the platform never returned the |
The client's name on the external platform. Null when the platform never returned the | ||
| status | enum | Pending InProgress Completed Failed Skipped |
Pending InProgress Completed Failed Skipped | ||
| errorMessage | string | Why this client failed to import. Null for any status other than Failed. |
Why this client failed to import. Null for any status other than Failed. | ||
| processedDate | string | When this client was processed |
When this client was processed | ||
JSON Example
{
"externalId": "string",
"name": "string",
"status": "Pending",
"errorMessage": "string",
"processedDate": "2024-01-01T00:00:00Z"
}