> ## Documentation Index
> Fetch the complete documentation index at: https://docs.annature.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Envelope completed

Triggered when all recipients have completed their actions and the envelope is fully executed.

The webhook payload includes temporary download URLs for:

* The completed **master** version of the envelope (with all fields and signatures applied)
* The **certificate of completion** (a separate PDF documenting the signing timeline)
* The **combined** copy (a single PDF containing both the master and the certificate appended together)

These URLs are valid for **72 hours**. After expiry, they return a `403 Forbidden` response.

To regenerate download links at any time, use the [Retrieve an envelope](/api-reference/envelopes/retrieve-envelope) endpoint.

<ResponseExample>
  ```json theme={null}
  {
    "event": "envelope_completed",
    "envelope_id": "7e8f68e4c6df9395cd7ff48d69d7e2c1",
    "completed": "2019-12-17T05:30:00Z",
    "master": "https://annature..",
    "certificate": "https://annature..",
    "combined": "https://annature.."
  }
  ```
</ResponseExample>
