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
POSTJSON payloads. - Validate auth token or signature.
- Return clear
2xxor4xx/5xxresponses.
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
eventintegration_namearticle.idarticle.titlearticle.slugarticle.content_htmlarticle.meta_titlearticle.meta_descriptionarticle.published_at
4) Production best practices
- Persist inbound payload before processing.
- De-duplicate using
article.idand 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.