# Experience deleted

Sent when an experience is deleted.

Endpoint: POST v1.experience.deleted

## Header parameters:

  - `webhook-id` (string, required)
    Unique identifier for this webhook message.
This ID is the same when a webhook is retried due to a previous failure.
Use this for deduplication.

  - `webhook-timestamp` (string, required)
    Timestamp of when the webhook was sent, in seconds since epoch.
Compare against your system time to prevent replay attacks.

  - `webhook-signature` (string, required)
    Base64-encoded HMAC-SHA256 signature for verifying the webhook authenticity.
The signature is computed over: `{webhook-id}.{webhook-timestamp}.{body}`.

## Request fields (application/json):

  - `id` (string, required)
    Unique identifier for the event.

  - `type` (any, required)

  - `timestamp` (string, required)
    Timestamp of when the event occurred.

  - `payload` (object, required)
    Payload for the v1.experience.deleted webhook event.

  - `payload.experience_id` (string, required)
    The unique identifier of the deleted experience.

  - `payload.host_id` (string, required)
    The unique identifier of the host that owned the experience.

