# Blog Post - Any Activity Triggered when any activity occurs on a blog post (create, update, publish, unpublish, delete). This is a catch-all event that fires for all blog post changes, making it useful for general blog post monitoring and cache invalidation. Endpoint: POST post-all 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.all", "post.published", "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