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"
}| Name | Type | Description | 
|---|---|---|
| data | object | The blog data that exists when the blog is initially created. At the moment, this will be null | 
| source.type | string | The location of the source for the creation event. Possible values are EDITOR and API | 
| source.account_name | string | If 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"
}| Name | Type | Description | 
|---|---|---|
| data.title | string | The title of the blog post | 
| data.republish | boolean | Boolean stating if this was a republish of an existing blog post | 
| data.first_publish | boolean | Boolean stating if this was the first publish of a blog post | 
| source.type | string | The location of the source for the publish event. Possible values are EDITOR | 
| source.account_name | string | If a publish was triggered through the editor, then this contains the account who initiated the publish | 
Updated 5 months ago