# Blog Post - Draft Saved Triggered when a draft blog post is saved. This event fires when: - A new blog post is created and saved as draft - An existing draft is updated and saved - A published post is updated and saved as draft (effectively unpublishing) Endpoint: POST post-draft Version: 2.0.0 Security: ## Request fields (application/json): - `data` (object) Webhook data payload for blog post events - `data.id` (string, required) Blog post slug Example: "example-blog-post-slug" - `data._id` (integer, required) Blog post numeric ID Example: 1234 - `webhook` (object) Webhook metadata included in all webhook payloads - `webhook.event` (string, required) The event type that triggered this webhook Enum: "post.draft", "post.all", "post.published", "post.delete", "page.all", "page.published", "page.draft", "page.delete", "page.unpublished", "collectionitem.all", "collectionitem.published", "collectionitem.draft", "collectionitem.delete", "collectionitem.unpublished", "media.videouploaded" - `webhook.target` (string, required) The webhook endpoint URL that received this notification ## Response 200 fields