Global events
Global events
Global events are notifications that are not tied to a specific design but relate to workspace-wide actions, such as an export completion.
NEW_EXPORT
This event is triggered when an export job—which typically bundles multiple assets into a single archive—has completed processing and the resulting file is ready for download.
Filterable by Design: No. This is a global event that applies to the entire workspace.
Payload Example
{
"export_id": "54e62358-2656-455c-afd7-66d5ed3dd581",
"archive_url": "url.zip",
"requested_at": 1649838051,
"generated_at": 1649838135
}Payload Field Definitions
Field Name
Type
Description
export_id
string (UUID v4)
The unique ID for the completed export job.
archive_url
string
The URL where the export archive is stored. Currently, this is only a ZIP file.
requested_at
number (Timestamp)
The Unix timestamp indicating when the export was initially requested.
generated_at
number (Timestamp)
The Unix timestamp indicating when the final export archive was successfully generated and became available.
Last updated