API Docs / Schemas / ImportJobDto

ImportJobDto

DTO representing an import job status

Properties

Name Type Description
codestring

Unique code for this import job

Unique code for this import job

statusenum

Queued InProgress Completed Failed Cancelled Draft

Queued InProgress Completed Failed Cancelled Draft

totalItemsinteger

Total number of items to be imported

Total number of items to be imported

processedItemsinteger

Number of items processed so far

Number of items processed so far

successCountinteger

Number of items successfully imported

Number of items successfully imported

failureCountinteger

Number of items that failed to import

Number of items that failed to import

errorMessagestring

Why the job as a whole failed. Set only when Status is Failed, and only for job-level
failures (deleted connection, unsupported platform, unhandled error) - per-client failure
reasons come from the import job clients endpoint instead.

Why the job as a whole failed. Set only when Status is Failed, and only for job-level
failures (deleted connection, unsupported platform, unhandled error) - per-client failure
reasons come from the import job clients endpoint instead.

enrichFromCompaniesHouseboolean

Whether Companies House enrichment is enabled

Whether Companies House enrichment is enabled

startedDatestring

When the job started processing

When the job started processing

completedDatestring

When the job completed

When the job completed

createdDatestring

When the job was created

When the job was created

JSON Example

{
  "code": "string",
  "status": "Queued",
  "totalItems": 0,
  "processedItems": 0,
  "successCount": 0
}

Used By Operations