# Collection Item - Deleted Triggered when a collection item is deleted. This event fires when: - A collection item is permanently removed from the system - A collection item is moved to trash and then permanently deleted Endpoint: POST collectionitem-delete Version: 2.0.0 Security: ## Request fields (application/json): - `data` (object) Webhook data payload for collection item events - `data.id` (string, required) Collection key identifier Example: "your_collection" - `data.itemid` (string, required) API URI for retrieving the specific collection item Example: "/v2/content/?keys=your_collection[_id=1234]" - `data.label` (string, required) Display label for the collection item Example: "Your Collection Item" - `data.editor` (string, required) Full name of the editor who made the change Example: "John Doe" - `data.timestamp` (string, required) Current timestamp when webhook was generated Example: "2024-01-15T18:11:09" - `data.locale` (string,null) Locale code for localized content, null for default locale Example: "en" - `data.status` (string) Current collection item status Enum: "draft", "published", "deleted" - `webhook` (object) Webhook metadata included in all webhook payloads - `webhook.event` (string, required) The event type that triggered this webhook Enum: "collectionitem.delete", "post.all", "post.published", "post.draft", "post.delete", "page.all", "page.published", "page.draft", "page.delete", "page.unpublished", "collectionitem.all", "collectionitem.published", "collectionitem.draft", "collectionitem.unpublished", "media.videouploaded" - `webhook.target` (string, required) The webhook endpoint URL that received this notification ## Response 200 fields