Zapier
A native SynthBoard app for Zapier is in development. You don't have to wait for it: Zapier's built-in Webhooks steps drive the full REST API today — start a board from any Zap and route the decision memo anywhere in Zapier's 8,000 apps.
How to connect today#
- 1
Create an API key
In SynthBoard, open /mcp/console → API Keys → Create. Give it session:read + session:write scopes and copy the sb_live_... token.
- 2
Start a session from a Zap
Add a 'Webhooks by Zapier' → 'Custom Request' action. POST to /api/v1/sessions with your question — the intake and decision brief do the setup automatically.
POST https://www.synthboard.ai/api/v1/sessions Authorization: Bearer sb_live_... Content-Type: application/json {"question": "{{trigger_data}}", "session_type": "boardroom"} - 3
React to completion
Create a 'Webhooks by Zapier' Catch Hook trigger in a second Zap, then register its URL with SynthBoard: POST /api/v1/webhooks with events ["session.complete", "outcomes.ready"]. Verify the X-SynthBoard-Signature on receipt.
Planned adapter surface#
What the native adapter will expose. Every operation already exists as a REST endpoint or webhook event you can use now.
Actions
- Plan Session
- Start Session
- Reconvene Board
- Send Consult Message
- Cancel Session
- Generate Outcomes
- Export Session
- Create / Revoke Share
- Capture Decision
Triggers
- Session Completed (webhook)
- Session Failed (webhook)
- Outcomes Ready (webhook)
Notes#
- The webhook events and REST endpoints above are live today — the native app only wraps them in Zapier's UI