What are webhooks?
Webhooks provide a powerful way to keep your site’s content fresh and automate workflows. When an event occurs in your Marble CMS workspace (like publishing a post), Marble sends an HTTP POST request with event data to a URL you configure. Marble webhooks are powered by Upstash QStash, ensuring reliable delivery of events with automatic retries.Use cases
Content Revalidation
For statically generated sites (SSG) built with frameworks like Next.js, Astro, or Nuxt, content is fetched when you build your site. Webhooks allow you to trigger instant revalidation when content changes.
Automating Workflows
Automate tasks like sending newsletters, sharing on social media, or syncing content to other services when posts are published or updated.
Content revalidation
For statically generated sites, content is fetched at build time. If you update a post in Marble, the change won’t be live until you trigger a new deployment. Frameworks like Next.js provide built-in solutions for this, such as Incremental Static Regeneration (ISR), which can be triggered on-demand by a webhook for instant updates.Automating workflows
Create a serverless function that listens for apost.published event from a Marble webhook. When triggered, your function can:
- Send a newsletter to your subscribers with the new post
- Share the post on social media
- Sync the content to another service or backup location
Setting up webhooks in Marble
1
Navigate to Webhooks
On the Marble dashboard, go to the Webhooks section.
2
Create a New Webhook
Click Create Webhook and fill in the required details:
- Name: A descriptive name for your webhook
- URL: The endpoint where the webhook payload will be sent
- Format: Choose the payload format (currently only JSON is supported)
- Events: Select the events you want to listen for (e.g.,
post.published,post.updated)
3
Save and Copy Secret
Save your webhook, then click the 3 dots on the top right and select Copy secret. You’ll need this to verify the authenticity of incoming requests.
Verifying webhook requests
To ensure that incoming webhook requests are from Marble and haven’t been tampered with, you can verify the request using the webhook secret. Here’s an example of how to verify a webhook request in Next.js using thecrypto module (or use verifyMarbleSignature from @usemarble/core instead of copying this function):
For a detailed guide on cache invalidation in Next.js, see our blog post on Using Marble’s Webhooks with the Next.js App Router. For other frameworks, check our integration guides.
x-marble-signature header of the request. You can use this signature to verify the authenticity of the request. Make sure to add the process.env.MARBLE_WEBHOOK_SECRET environment variable.
Request Payload
When a webhook is triggered, Marble sends a POST request to the specified URL with a JSON payload. The payload structure varies depending on the event type. We try to keep the payloads as minimal as possible, only including relevant data. Forpost.published and post.updated events, the payload includes the post title along with the standard fields. Here’s an example payload for a post.published event:
tag.deleted event:
media.* events, which include a name field instead of the slug.
Event Types
Marble supports a variety of event types that you can listen for with webhooks. Here are the currently available events:post.published: Triggered when a post is published.post.updated: Triggered when a post is updated.post.deleted: Triggered when a post is deleted.tag.created: Triggered when a new tag is created.tag.updated: Triggered when a tag is updated.tag.deleted: Triggered when a tag is deleted.category.created: Triggered when a new category is created.category.updated: Triggered when a category is updated.category.deleted: Triggered when a category is deleted.media.deleted: Triggered when a media file is deleted.