CsvExportJobDto
Represents the current status and progress of a CSV export job.
Returned when starting an export or polling for status.
Use this to track progress and obtain the download URL when complete.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code identifying this export job. |
Unique code identifying this export job. | ||
| status | enum | Queued InProgress Completed Failed Cancelled |
Queued InProgress Completed Failed Cancelled | ||
| totalItems | integer | Total number of clients to export. |
Total number of clients to export. | ||
| processedItems | integer | Number of clients that have been written to the CSV so far. |
Number of clients that have been written to the CSV so far. | ||
| downloadUrl | string | URL to download the generated CSV file. |
URL to download the generated CSV file. | ||
| startedDate | string | When the job started processing (UTC). |
When the job started processing (UTC). | ||
| completedDate | string | When the job completed processing (UTC). |
When the job completed processing (UTC). | ||
| createdDate | string | When the export job was created (UTC). |
When the export job was created (UTC). | ||
JSON Example
{
"code": "string",
"status": "Queued",
"totalItems": 150,
"processedItems": 75,
"downloadUrl": "string"
}