Blog

A list of available Duda Webhook Events.

Blog

All webhooks related to blog events are listed below.

Create Blog

A notification is sent when a blog is added to a site. Event type: BLOG_CREATED

{
  "data": null,
  "source": {
    "type": "EDITOR",
    "account_name": "[email protected]"
  },
  "resource_data": {
    "site_name": "der45dtj3465tee"
  },
  "event_timestamp": 1736978912452,
  "event_type": "BLOG_CREATED"
}
NameTypeDescription
dataobjectThe blog data that exists when the blog is initially created. At the moment, this will be null
source.typestringThe location of the source for the creation event. Possible values are EDITOR and API
source.account_namestringIf a blog creation was triggered through the editor, then this contains the account who initiated the publish

Blog Post Publish

A notification is sent when a blog post is published. Event type: BLOG_POST_PUBLISH

{
  "data": {
    "title": "The Art of Playing Baseball",
    "republish": true,
    "first_publish": false
  },
  "source": {
    "type": "EDITOR",
    "account_name": "[email protected]"
   },
   "resource_data": {
    "site_name": "der45dtj3465tee"
   },
   "event_timestamp": 1567603977697,
   "event_type": "BLOG_POST_PUBLISH"
}
NameTypeDescription
data.titlestringThe title of the blog post
data.republishbooleanBoolean stating if this was a republish of an existing blog post
data.first_publishbooleanBoolean stating if this was the first publish of a blog post
source.typestringThe location of the source for the publish event. Possible values are EDITOR
source.account_namestringIf a publish was triggered through the editor, then this contains the account who initiated the publish