A Make (formerly Integromat) custom app for Hedy — your AI-powered meeting intelligence assistant.
Hedy helps you be the brightest person in the room by providing real-time transcription, meeting summaries, action items, and intelligent insights from your meetings.
Receives real-time webhook notifications when events occur in Hedy:
- Session Created — When a new meeting session starts
- Session Ended — When a meeting session completes
- Highlight Created — When a highlight is created during a meeting
- Todo Exported — When a todo item is exported
Retrieve detailed session information including transcript, highlights, and todos.
Search and list your sessions with configurable limits.
Retrieve details of a specific highlight.
Search and list highlights across all sessions.
List action items across all sessions.
List your conversation topics.
Retrieve details of a specific topic.
Perform a custom API call to any Hedy endpoint for advanced use cases.
- Open Hedy and go to Settings > API
- Click Generate New Key
- Copy the API key (starts with
hedy_live_) - In Make, create a new Hedy connection and paste your API key
Send meeting summaries to Slack when sessions end:
[Watch Events: session.ended] → [Get a Session] → [Slack: Send Message]
Save important highlights to a Notion database:
[Watch Events: highlight.created] → [Get a Highlight] → [Notion: Create Database Item]
Export todos to your project management tool:
[Watch Events: todo.exported] → [Jira/Trello/Asana: Create Task]
Generate daily meeting reports:
[Schedule: Daily at 5 PM] → [List Sessions] → [Format Report] → [Email: Send]
This app is built using the Make Apps SDK and managed via the Make Apps Editor VS Code extension.
- Install the Make Apps Editor VS Code extension
- Generate an API token in your Make profile under API Access
- Clone this repo and open it in VS Code
- Create
.secrets/apikeywith your Make API token - Right-click
makecomapp.jsonand select Deploy to Make
make-app-hedy/
├── makecomapp.json # App manifest
├── general/
│ ├── base.iml.json # Base URL and shared config
│ └── common.json # Shared data
├── connections/
│ └── apiKey/ # API key connection
├── webhooks/
│ └── hedyEvents/ # Webhook lifecycle (attach/detach)
├── modules/
│ ├── watchEvents/ # Instant trigger
│ ├── getSession/ # Action: get session details
│ ├── listSessions/ # Search: list sessions
│ ├── getHighlight/ # Action: get highlight details
│ ├── listHighlights/ # Search: list highlights
│ ├── listTodos/ # Search: list todos
│ ├── listTopics/ # Search: list topics
│ ├── getTopic/ # Action: get topic details
│ ├── makeAnApiCall/ # Universal: custom API call
│ └── groups.json # Module grouping
└── rpcs/
├── listTopicsRpc/ # Dynamic dropdown for topics
└── listSessionsRpc/ # Dynamic dropdown for sessions
- Hedy Support: support@hedy.bot
- GitHub Issues: make-app-hedy/issues
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License — see the LICENSE file for details.
Made with care by the Hedy team