Prerequisite: You need an API Key and a URL where we can send POST requests. Webhooks are configured at the organization level - all teams under that org share the same webhook endpoints.
Setup
- Go to the Webhooks Dashboard.
- Add your URL (e.g.,
https://api.yourapp.com/webhooks/bundle). Must be HTTPS. - Get your Signing Secret.
Events
team.updated also fires when a social account is added to or removed from a team - so you don’t need to listen to social account events separately if you’re already tracking teams.Payload Structure
Every webhook delivery is an HTTP POST with this shape:Headers We Send
Post Events Payload
When you receivepost.published, the data field contains the full post object. Use data.status to distinguish success from failure.
post.published, but data.status is ERROR and data.error, data.errors, or data.errorsVerbose contains the failure details.
Comment Events Payload
comment.published, but data.status is ERROR.
Social Account Events Payload
accessToken, refreshToken, secret, and expiresAt are never included in webhook payloads. We’re not that reckless.
Team Events Payload
Delivery & Retries
We really try to deliver your webhooks. Here’s how hard we try:
So if your server is down, we’ll try 3 times with increasing delays. After that, the event is marked as failed and we move on. We’re persistent, not obsessive.
Auto-Disable (The Safety Net)
If your webhook endpoint goes 7 days without a single successful delivery, we automatically disable it. This protects both of us - we stop wasting resources, and you stop missing events you don’t know about. When this happens:- Your webhook is marked as disabled and we stop sending events to that URL
- We send an email to the organization owner and create an in-app notification in the dashboard, both linking to the webhooks page
- You can re-enable it from the dashboard or API, which resets the 7-day window (so a single failure right after re-enabling won’t immediately disable it again)
- On the next successful delivery, the failure counter resets to 0
Resending Events
Made a mistake in your handler? Event got lost? You can resend any webhook event from the dashboard or via the API. We’ll create a fresh delivery attempt with the same payload.Remote Disconnection Detection
We check every connected social account every 6 hours to see if it’s still valid. If the platform tells us “nope, this token is dead,” we start the disconnection flow.How It Works
- Every 6 hours, we validate each connected account against its platform.
- If the check fails, we retry 3 times with 10-minute backoff.
- If all retries fail, we schedule the account for deletion and send you a
social-account.updatedwebhook. - After the grace period, we remove the account (fires
social-account.deleted).
POST /api/v1/social-account/connection-check when your user opens account settings or before showing a reconnect warning.
The social-account.updated Payload
When we detect a disconnection, the webhook includes a socialAction object with the details:
Status Codes
The deleteOn Grace Period
When an account is scheduled for deletion, deleteOn tells you exactly when it will be removed. The delay is controlled by deleteAccountAfter on your organization settings (0-24 hours).
- Default: 0 hours - account is removed almost immediately.
- If you set it to e.g. 6 hours - you get a 6-hour window to notify your user before the account is gone.
- It’s removed from all draft and scheduled posts.
- Posts that only had this account become drafts.
- If the user reconnects before
deleteOn, the account stays.
Best Practices
- Respond fast. Return a
200within 15 seconds. Do heavy processing asynchronously. If you take too long, we’ll count it as a failure. - Be idempotent. We might deliver the same event twice in rare cases (retries, race conditions). Deduplicate with the event
type,data.id,data.status, and relevant timestamps. - Verify signatures. Always. No exceptions. Even in development. See the SDK for built-in signature verification, or check the Swagger for the raw details.
- Use HTTPS. We only send webhooks to HTTPS URLs. Sorry,
http://localhostworks via ngrok though. - Monitor your failures. If your endpoint has been failing for days with no successful deliveries, fix it before the 7-day auto-disable kicks in. You’ll get an email + dashboard notification when it does, but catching it sooner is better.