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.
Filtering
Not filterable by design — this is a global event covering the whole workspace.
Payload example
json
{
"event_type": "NEW_EXPORT",
"export_id": "54e62358-2656-455c-afd7-66d5ed3dd581",
"archive_url": "https://example.com/export.zip",
"requested_at": 1649838051,
"generated_at": 1649838135
}Payload fields
| Field | Type | Description |
|---|---|---|
event_type | String | Always "NEW_EXPORT". |
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
- Asset Export — the export request that triggers this event
- Banner Events — image generation completion events
