Exports
Get Export
GET
Retrieve a single export by its ID. Only exports belonging to your organization are accessible. Use this to check the status of an export or retrieve its download URLs.
Path Parameters
The export ID returned from a previous export request.
Response
| Field | Type | Description |
|---|---|---|
export_id | string | Unique identifier for the export |
status | string | Export status: pending, processing, completed, or failed |
name | string | Export name (e.g., properties_export, people_export) |
progress | integer | Progress percentage (0–100) |
progress_stage | string | Human-readable progress description |
record_count | integer | Number of records exported (null if not yet complete) |
file_size | integer | Total file size in bytes (null if not yet complete) |
download_urls | array | Signed download URLs (null if not yet complete or expired) |
created_at | string | ISO 8601 timestamp when the export was created |
updated_at | string | ISO 8601 timestamp when the export was last updated |
expires_at | string | ISO 8601 timestamp when the export and download URLs expire |
Tips
- Use the
export_idfrom any export response (POST /v1/properties/exportorPOST /v1/people/export) to retrieve the export later. - Download URLs are time-limited. If they’ve expired, you’ll need to run the export again.
- See the Exporting Guide for best practices.