Global Events
Global events are not tied to a specific design — they relate to workspace-wide actions such as export completion.
NEW_EXPORT
Triggered when an export job (which bundles multiple assets into a ZIP archive) has completed and the file is ready for download.
WARNING
Filterable by Design: No. This is a global event that applies to the entire workspace.
Payload Example
json
{
"export_id": "54e62358-2656-455c-afd7-66d5ed3dd581",
"archive_url": "https://example.com/export.zip",
"requested_at": 1649838051,
"generated_at": 1649838135
}Payload Field Definitions
| Field | Type | Description |
|---|---|---|
export_id | UUID v4 | Unique ID for the completed export job. |
archive_url | string | URL of the export archive (ZIP). |
requested_at | Unix timestamp | When the export was initially requested. |
generated_at | Unix timestamp | When the archive became available. |
Related
- Webhooks Overview — how to configure webhook endpoints
- Image Export — the export request that triggers this event
- Banner Events — image generation completion events
