Documentation

Webhook Quickstart

Publish PrismSEO articles into any CMS or framework using the webhook integration.

Webhook Quickstart

Use webhooks when you want to publish PrismSEO content into a custom stack.

1) Prepare a receiver endpoint

  • Accept POST JSON payloads.
  • Validate auth token or signature.
  • Return clear 2xx or 4xx/5xx responses.

2) Connect webhook in PrismSEO

1. Open dashboard integrations.

2. Choose webhook integration.

3. Enter destination URL and access token.

4. Save connection.

3) Expected payload fields

  • event
  • integration_name
  • article.id
  • article.title
  • article.slug
  • article.content_html
  • article.meta_title
  • article.meta_description
  • article.published_at

4) Production best practices

  • Persist inbound payload before processing.
  • De-duplicate using article.id and slug.
  • Add retries with idempotent writes.
  • Alert on repeated non-2xx responses.

Next step

Apply this setup, then run your first publish cycle from your dashboard.