🚀 Getting Started

Connecting your website for publishing

Configure your CMS endpoint so SigoMark can publish articles directly

How publishing works

SigoMark sends approved articles to your website via a webhook (HTTP POST). Your CMS receives the article data and creates/updates the post.

Setup

  1. Go to Projects β†’ Edit β†’ Publishing
  2. Enter your Article API Endpoint URL
  3. Enter your API Secret (used to sign requests β€” verify authenticity on your end)
  4. Set allowed publish windows (optional β€” e.g. weekdays 8am–6pm only)
  5. Click Test Connection

WordPress setup

Install the SigoMark WordPress plugin and copy the endpoint + secret it generates into your project settings. The plugin handles article creation, categories, tags, and featured images automatically.

Custom CMS

Your endpoint should accept a POST with this JSON body:

{
  "title": "Article title",
  "content": "<html content>",
  "excerpt": "Short summary",
  "tags": ["tag1", "tag2"],
  "category": "category-slug",
  "featuredImageUrl": "https://...",
  "publishAt": "2026-06-30T10:00:00Z"
}

The X-SigoMark-Signature header contains an HMAC-SHA256 signature using your API secret. Validate it before processing.

Testing

After clicking Test Connection, check your CMS for a draft test post with the title "SigoMark Connection Test". If it appears, your setup is working.