# Blog Post - Published Triggered when a blog post is published or republished. This event fires when: - A draft blog post is published for the first time - An already published post is republished after changes - A scheduled post is automatically published Endpoint: POST post-published 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.published", "post.all", "post.draft", "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