Prerequisites
- A Jamie account with Plus plan or higher
- A Make.com account
- Workspace admin access in Jamie
Step 1: Create the Webhook in Jamie First
We’ll create the Jamie webhook first to get the API key, then use it when setting up Make.com.- Go to Settings → Integrations → Webhooks in Jamie
- Click Create Webhook
- Enter a placeholder URL for now (e.g.,
https://hook.make.com/placeholder) - Add a description (e.g., “Make.com automation”)
- Click Continue
- Select API Key as the authentication method
- Set the Header Name to:
x-make-apikey - Click Create Webhook
- Copy the generated secret key (
sk_...) - you’ll need this for Make.com
Step 2: Create the Webhook in Make.com
Now create the Make.com webhook with API key verification built-in:- Log in to your Make.com account
- Create a new scenario or open an existing one
- Click + to add a new module
- Search for Webhooks and select Custom webhook
- Click Add to create a new webhook
- Enter a Webhook name (e.g., “Jamie webhook”)
- Expand API Key authentication → API keys
- Click + Add API key
- Click Add next to the “Choose a key” dropdown
- In the Add new keychain dialog:
- Name: Enter a name (e.g., “Jamie API Key”)
- API key value: Paste the secret key (
sk_...) from Jamie
- Click Create
- Select the key you just created from the dropdown
- Click Save
- Copy the webhook URL that Make.com generates
The URL will look something like:
https://hook.make.com/abc123xyz789...Make.com will now automatically reject any requests that don’t include the correct x-make-apikey header with your secret key.Step 3: Update the Jamie Webhook URL
- Go back to Jamie Settings → Integrations → Webhooks
- Find your webhook and click to edit it
- Replace the placeholder URL with the real Make.com webhook URL you copied
- Click Save
Step 4: Determine the Data Structure
- In Make.com, right-click on your webhook module and select Run this module only
- Go to Jamie and click Send Test Webhook for your webhook
- Make.com will capture the test data and show you the available fields
- Click OK to save the structure
Step 5: Build Your Automation
Now you can use the meeting data in your Make.com scenario! Here are some common examples:Send Summary to Slack
- Channel: Select your channel (e.g.,
#meeting-summaries) - Text: Click and select
data→summary→markdown
Save to Google Docs
- Title:
{{data.event.title}} - Meeting Summary - Content: Select
data→summary→html
Add Tasks to Notion
- Add an Iterator module after the webhook
- Set the array to:
data→tasks - Connect to Notion and map:
- Task name:
content(from the iterator) - Status:
To Do
- Task name:
Example: Complete Automation Flow
Webhook Data Available in Make.com
After the webhook receives data, you’ll have access to these fields:| Field Path | Description | Example |
|---|---|---|
metadata.id | Webhook delivery ID | "7893456789012345678" |
metadata.event | Event type | "meeting.completed" |
data.event.title | Meeting title | "Q4 Planning Meeting" |
data.event.scheduledTime | Start time (ISO 8601) | "2024-11-27T14:00:00.000Z" |
data.event.endTime | End time (ISO 8601) | "2024-11-27T15:00:00.000Z" |
data.summary.markdown | Summary in Markdown | "# Meeting Summary..." |
data.summary.html | Summary in HTML | "<h1>Meeting Summary</h1>..." |
data.transcript[] | Array of transcript segments | See below |
data.participants[] | Array of participants | [{ id, name }] |
data.tasks[] | Array of action items | [{ content, completed }] |
Transcript Structure
Each item indata.transcript[]:
speakerId: Unique speaker identifierspeakerName: Display nametext: What was said
Tasks Structure
Each item indata.tasks[]:
content: The task descriptioncompleted: Boolean (usuallyfalsefor new tasks)
Troubleshooting
Webhook not receiving data:- Ensure the webhook is enabled in Jamie (check the toggle)
- Verify the Make.com URL is correct (no extra spaces)
- Check that your Jamie plan supports webhooks
- Make sure the Make.com scenario is turned on (not just saved)
- Verify the API key in Make.com matches exactly the key from Jamie
- Check that the header name in Jamie is set to
x-make-apikey - Try regenerating the key in Jamie and updating it in Make.com
- Run the webhook module in “Run once” mode first
- Send a test webhook from Jamie to capture the structure
- Check the Make.com History tab for incoming requests
- Re-run the “determine data structure” step
- Make sure you’re selecting fields from the correct module
- Check that array fields use an Iterator module
- Verify the scenario is turned on (toggle in bottom-left)
- Check your Make.com plan limits (operations per month)
- Look for errors in the scenario’s execution history

