Mailchimp · Schema
ExportJob
Information about a data export job.
CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique export job ID. |
| created_at | string | When the export was created. |
| type | string | The type of data being exported. |
| finished_at | string | When the export completed. |
| state | string | The current state of the export. |
| result_url | string | The URL to download the export file (when complete). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExportJob",
"title": "ExportJob",
"type": "object",
"description": "Information about a data export job.",
"properties": {
"id": {
"type": "string",
"description": "The unique export job ID.",
"example": "abc123"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the export was created.",
"example": "2026-01-15T10:30:00Z"
},
"type": {
"type": "string",
"enum": [
"activity",
"reject",
"whitelist"
],
"description": "The type of data being exported.",
"example": "activity"
},
"finished_at": {
"type": "string",
"format": "date-time",
"description": "When the export completed.",
"example": "2026-01-15T10:30:00Z"
},
"state": {
"type": "string",
"enum": [
"waiting",
"working",
"complete",
"error",
"expired"
],
"description": "The current state of the export.",
"example": "waiting"
},
"result_url": {
"type": "string",
"format": "uri",
"description": "The URL to download the export file (when complete).",
"example": "https://www.example.com"
}
}
}