Configuring Webhooks in Jamy
Learn how to configure webhooks in Jamy so report data can be sent to any app via Zapier, Make, or your own API endpoint. Jamy uses Svix as the webhooks platform.
Written By Jamy
Last updated 6 days ago
What webhooks do
When a meeting report is ready, Jamy can POST the report payload to a URL you choose.
Common uses:
Push summaries and tasks into a CRM, Notion, Sheets, or Slack via Zapier/Make
Trigger internal automations when a meeting is processed
Send structured report data to your own API
This is different from the API Keys flow:
API — you pull/create data on demand
Webhooks — Jamy pushes data when an event happens
Who can use webhooks
Your plan must include webhooks (higher-tier plans such as Pro / Premium / Global Business).
If you don’t have access, Configure Webhooks may show an upgrade prompt.
Open Webhooks from Settings → Dev → Webhooks.
Open the Webhooks settings
Log in to Jamy.
Go to Settings → Webhooks
Direct link: https://app.jamy.ai/settings/webhooks
Or: account menu → Dev → Webhooks.You’ll see a short explanation of webhooks and an example diagram.
Click Configure Webhooks.
Jamy opens your Svix dashboard in a new tab (via a secure login link).
There is also a How to configure webhooks button on the same page that links back to this help article.
Add an endpoint in Svix
In Svix, click Add Endpoint (usually top right).
Enter:
Endpoint URL — where Jamy should send events (Zapier Catch Hook, Make webhook, or your API)
Description — optional, e.g. “Zapier – CRM sync”
Subscribe to the event:
meeting.processedCreate / save the endpoint.
After that, when a meeting report is processed, Jamy sends the report object to that URL.
Inspect the payload
In Svix, open Event Catalog (Event Catalogue) to see the structure of the meeting.processed payload (fields such as summary, tasks, url, duration, and related report data).
Connect to Zapier
Use Zapier when you want Jamy report data to flow into any Zapier-connected app without writing code.
1) Create a Catch Hook in Zapier
Log in to Zapier.
Click + Create → Zaps.
Set the Trigger.
Choose Webhooks by Zapier.
Under Event, select Catch Hook.
Continue until you reach the test / webhook URL step.
Copy the webhook URL.
2) Add that URL in Svix
In Svix, Add Endpoint (or edit an existing one).
Paste the Zapier webhook URL as the endpoint URL.
Subscribe to
meeting.processed.Save the endpoint.
3) Test the Zapier integration
In Svix, open your endpoint → Testing tab.
Choose
meeting.processed.Click Send Example.
Confirm the attempt shows as succeeded.
In Zapier, click Test trigger.
Open the sample request to inspect the payload.
Click Continue with selected record.
Add Zapier actions for any app you want (CRM, email, Sheets, Slack, etc.).
You can map specific fields such as:
taskssummaryurlduration
For multiple destinations, add more steps in the same Zap.
Connect to Make
Make works the same way at a high level:
In Make, create a scenario with a Custom webhook / webhook module.
Copy the webhook URL Make provides.
In Svix, add that URL as an endpoint and subscribe to
meeting.processed.Send a test event from Svix’s Testing tab.
Continue the Make scenario to route Jamy fields into other apps.
Send to your own API endpoint
Expose an HTTPS endpoint that accepts POST requests.
Add that URL in Svix and subscribe to
meeting.processed.Verify signatures / security as recommended by Svix.
Use Send Example in Svix to confirm your server receives the payload.
Parse the report object and store or forward what you need.
Recommended checklist
Confirm your plan includes webhooks.
Open Settings → Webhooks → Configure Webhooks.
In Svix, add an endpoint URL.
Subscribe to
meeting.processed.Review the payload in Event Catalog.
Send a test event from the Testing tab.
Confirm Zapier / Make / your API received it.
Process a real meeting in Jamy and verify the live webhook.
Tips
Use a clear endpoint description so you know which automation it belongs to.
Prefer HTTPS URLs only.
Start with Send Example before relying on a live meeting.
If Zapier doesn’t see data, re-test the trigger after a successful Svix attempt.
Keep API keys and webhook URLs private.
For on-demand report creation, use API Keys as well as webhooks.
FAQ
Related articles
Creating a meeting or call report with Jamy’s API
Creating a Report from an audio or video file
Connecting Jamy to Slack
Meeting Bots (AI Notetaker)
Configuring Notifications
Summary
Go to Settings → Webhooks → Configure Webhooks to open Svix. Add an endpoint URL, subscribe to meeting.processed, and inspect the payload in the Event Catalogue. For Zapier or Make, paste their Catch Hook / webhook URL into Svix, send a test event, then map fields such as summary, tasks, url and duration into any downstream app.