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).
View JSON Schema on GitHub

JSON Schema

mailchimp-transactional-export-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExportJob",
  "type": "object",
  "description": "Information about a data export job.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique export job ID."
    },
    "created_at": {
      "type": "string",
      "description": "When the export was created."
    },
    "type": {
      "type": "string",
      "description": "The type of data being exported."
    },
    "finished_at": {
      "type": "string",
      "description": "When the export completed."
    },
    "state": {
      "type": "string",
      "description": "The current state of the export."
    },
    "result_url": {
      "type": "string",
      "description": "The URL to download the export file (when complete)."
    }
  }
}