Adapter · Coming soon
Make
A native SynthBoard app for Make is in development. Until it ships, Make's HTTP module drives the full REST API, and the Custom Webhook module receives signed SynthBoard events.
The native Make adapter has not shipped yet. Everything below works today through the REST API and webhooks— we'll update this page the moment the directory listing is live.
How to connect today#
- 1
Create an API key
In SynthBoard, open /mcp/console → API Keys → Create and copy the sb_live_... token.
- 2
Call the API from a scenario
Add an HTTP 'Make a request' module. POST https://www.synthboard.ai/api/v1/sessions with an Authorization: Bearer header to start a board; poll GET /sessions/{id}?wait_ms=60000 for the memo.
- 3
Receive events
Add a Custom Webhook module, copy its URL, and register it via POST /api/v1/webhooks. SynthBoard signs every delivery — verify X-SynthBoard-Signature before acting.
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 / Start / Reconvene / Cancel Session
- Generate Outcomes / Export Session
- Send Consult Message / Synth Chat / Search Catalog
- Create / List / Revoke Share
Triggers
- Session Complete (webhook)
- Outcomes Ready (webhook)
Next#
Up next
Webhook signing