> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Package: getPaid

# Namespace: bulkDownloads

# Webhook link: https://dev.wix.com/docs/api-reference/business-management/get-paid/bulk-downloads/bulk-download-deleted.md

## Introduction

Triggered when a bulk download is deleted.

---

## REST API

### Schema

```
Webhook: Bulk Download Deleted
Description: Triggered when a bulk download is deleted.
Event body:
 - name: id | type: string | description: Unique event ID. Allows clients to ignore duplicate events.
 - name: entityFqdn | type: string | description: Fully qualified domain name of the entity associated with the event.
 - name: slug | type: string | description: Event name.
 - name: entityId | type: string | description: ID of the entity associated with the event.
 - name: eventTime | type: string (date-time) | description: Event timestamp.
 - name: triggeredByAnonymizeRequest | type: boolean | description: Whether the event was triggered as a result of a privacy regulation application such as GDPR.
 - name: originatedFrom | type: string | description: If present, indicates the action that triggered the event.

```

### Examples


```curl
{
  "id": "52269077-05f2-4b59-ba4f-36ef8c4c1e11",
  "entityFqdn": "wix.get_paid.downloader.v1.bulk_download",
  "slug": "deleted",
  "entityId": "8046df3c-7575-4098-a5ab-c91ad8f33c47",
  "deletedEvent": {
    "deletedEntity": {
      "id": "8046df3c-7575-4098-a5ab-c91ad8f33c47",
      "revision": 1,
      "createdDate": "2023-04-15T14:22:30.299Z",
      "updatedDate": "2023-04-15T14:22:30.299Z",
      "expirationDate": "2023-04-22T14:22:30.299Z",
      "namespace": "RECEIPTS",
      "downloadGenerationStatus": "READY",
      "entityIds": [
        "a1b2c3d4-e5f6-4a5b-9c8d-7e6f5a4b3c2d",
        "f1e2d3c4-b5a6-4c5d-8e7f-9a8b7c6d5e4f"
      ],
      "downloadGenerationDetails": {
        "processed": 2,
        "total": 2
      }
    }
  },
  "eventTime": "2023-04-15T14:22:30.304800Z",
  "triggeredByAnonymizeRequest": false
}
```

---