# 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.

{% hint style="warning" %}
Filterable by Design: No. This is a global event that applies to the entire workspace.
{% endhint %}

#### Payload Example

```json
{
    "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. |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.abyssale.com/webhooks/events/global-events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
