Sharing
Share meeting intelligence with anyone, even people outside your Karnyx workspace, using secure public links with granular permission controls and automatic expiration.
Public Shareable Links
You can create a shareable link for any meeting to give external stakeholders access to meeting content without requiring them to have an Karnyx account. The link opens a clean, read-only view of the meeting content you choose to share.
Creating a Share Link
- Open the meeting you want to share from the dashboard.
- Click the "Share" button in the meeting toolbar.
- In the share dialog, toggle on "Create public link".
- Configure which content to include (see Permission Controls below).
- Optionally set an expiration date.
- Click "Copy Link" to copy the URL to your clipboard.
// Share link format
https://app.karnyx.ai/share/shr_a1b2c3d4e5f6
// The link resolves to a clean, read-only page showing
// only the content sections you enabled when creating the link.
// No login is required to view the shared content.
No account required
Permission Controls
When creating a share link, you choose exactly which parts of the meeting to include. Each content section can be toggled independently.
| Content Section | Default | Description |
|---|---|---|
| Summary | On | The AI-generated meeting summary |
| Action Items | On | Extracted action items with assignees and due dates |
| Notes | Off | Your personal meeting notes (including highlights) |
| Transcript | Off | The full meeting transcript with speaker labels and timestamps |
| Lens Outputs | Off | Results from any Lenses you have run on the meeting |
Share just the summary
Link Expiration
Share links can be configured with an automatic expiration date. After expiration, the link returns a "This link has expired" page and the shared content is no longer accessible.
Expiration Options
| Option | Behavior |
|---|---|
| 24 hours | Link expires 24 hours after creation. Best for time-sensitive shares. |
| 7 days | Link expires after one week. Good for short-term project collaboration. |
| 30 days | Link expires after one month. Suitable for ongoing deal or project reviews. |
| Custom date | Set any specific date and time for expiration. |
| Never | Link does not expire automatically. Can still be revoked manually at any time. |
Organization policy
Revoking Links
You can revoke a share link at any time to immediately cut off access to the shared content.
How to Revoke
- Open the meeting and click the "Share" button.
- In the share dialog, you will see all active share links for this meeting.
- Click "Revoke" next to the link you want to disable.
- Confirm the revocation. The link immediately stops working.
Revoked links cannot be reactivated. If you need to share the meeting again after revoking, create a new share link with fresh permissions and expiration settings.
Bulk Revocation
Admins can view and revoke all active share links across the organization from Settings > Security > Active Share Links. This page shows every active link, who created it, when it expires, and how many times it has been viewed.
View tracking
Notion Export
In addition to share links, Karnyx can export meeting content directly to a Notion page. This is ideal for teams that use Notion as their central knowledge base.
Setting Up Notion Export
- Go to Settings > Integrations > Notion.
- Click "Connect Notion" and authorize the Karnyx integration in Notion.
- Select the Notion workspace and database where you want meeting pages to be created.
- Configure the default content mapping: which Karnyx fields map to which Notion properties.
Exporting a Meeting
- Open a meeting and click "Export" in the toolbar.
- Select "Export to Notion".
- Choose which content to include: summary, notes, transcript, action items, or Lens outputs.
- Click "Export". Karnyx creates a new Notion page with the selected content, formatted with proper headings, tables, and checkboxes.
Automatic Export
You can enable automatic Notion export for all meetings or for meetings matching specific rules (e.g., only client meetings, only meetings with more than 3 participants). Configure auto-export rules in Settings > Integrations > Notion > Auto-Export Rules.
// Auto-export rule example
{
"name": "Export client meetings to Notion",
"trigger": "meeting.completed",
"conditions": {
"has_external_participants": true,
"min_duration_minutes": 15
},
"export_config": {
"destination": "notion",
"database_id": "abc123...",
"content": ["summary", "action_items", "transcript"],
"properties": {
"Meeting Title": "{{meeting_title}}",
"Date": "{{date}}",
"Duration": "{{duration_minutes}}",
"Participants": "{{participants}}"
}
}
}Notion templates