API Webhook + AymarTech

Send every AI-generated article from AymarTech to your own endpoint using signed webhook deliveries.

AymarTech can publish completed articles to your API Webhook workflow as structured drafts, so editors can review before anything goes live. Your SEO pipeline stays consistent from keyword to publication.

Who this is for

This integration is for teams that already use API Webhook and need a reliable publishing lane for frequent SEO content. It fits lean marketing teams that want control over review and publishing quality.

What gets published

Payload AymarTech sends a JSON payload containing article ID, title, slug, excerpt, HTML body, plain text body, cover image URL, locale, tags, publish intent, and timestamps.

Setup

  1. Create an API Webhook integration in AymarTech and paste your endpoint URL.
  2. Generate a signing secret and store it on your receiving service.
  3. Define how your endpoint maps article fields into your CMS or pipeline.
  4. Send a test payload and verify signature, response code, and downstream publish behavior.

How it works under the hood

  • Outgoing requests use HTTPS with an HMAC signature header for authenticity checks.
  • Retry behavior uses exponential backoff for transient network and 5xx responses.
  • Payload schema is versioned to avoid breaking existing consumers.
  • Delivery logs include status code, response body excerpt, and retry count.

Troubleshooting

  • 401 or signature mismatch: verify shared secret and signature validation logic.
  • Timeouts: make endpoint processing asynchronous and return quickly.
  • 4xx validation errors: update field mapping in your receiver.
  • Duplicate delivery handling: implement idempotency using article ID and revision ID.

Frequently asked

Does the webhook include full article HTML?

Yes. Payloads include body content, metadata, and media URLs needed for downstream publishing.

How do I verify authenticity?

Use the HMAC signature header with your shared secret before accepting payloads.

Can I use staging and production endpoints?

Yes. You can keep separate webhook integrations for each environment.

What retry policy is used?

AymarTech retries temporary failures with capped exponential backoff.

Can webhooks trigger non-CMS workflows?

Yes. Many teams route content through queues, workflows, or internal APIs before publishing.

Related