{
"data": {
"id": "api-development-best-practices",
"_id": 1234
},
"webhook": {
"event": "post.all",
"target": "https://yourapp.com/webhooks/buttercms"
}
}Post events
Blog post any activity
Triggered when any activity occurs on a blog post, including create, update, publish, unpublish, and delete events.
WEBHOOK
blog-post-any-activity
{
"data": {
"id": "api-development-best-practices",
"_id": 1234
},
"webhook": {
"event": "post.all",
"target": "https://yourapp.com/webhooks/buttercms"
}
}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.
Was this page helpful?