Skip to content

Webhooks (v1.1)

Webhooks are planned for v1.1 and are not available yet - there is no POST /webhooks route in the current openapi.json, and no event is pushed to any URL today. This page exists so the plan is visible rather than silent, and so nothing here is mistaken for a shipped feature.

A workspace-scoped webhook (url, a signing secret, a list of subscribed events) that receives an HTTP POST for post-lifecycle events (live, failed, at minimum), signed the same way Dropslate itself verifies inbound provider webhooks - HMAC over the raw body, checked before anything in the payload is trusted.

GET /posts?status=queued or GET /posts/{id} on an interval covers the same need today - check Statuses for what to expect back, and Rate limits for how often you can reasonably poll. An MCP agent gets the same information from dropslate_list_posts and dropslate_get_post.

This page will gain the real route, request/response shapes and signature-verification example the day v1.1 ships - see the Changelog for when that happens.