Four integration paths
| Path | Best for | Sidebar group |
|---|---|---|
| Transcriptions | Text you already have — fragments, summaries, insights, translations | Event — Media → Transcriptions |
| Session recordings | Audio for a session’s recording archive | Event — Media → Session recordings |
| Media upload | Video or audio files that should be transcribed automatically | Event — Media → Media upload |
| Session files | PDFs, PowerPoint, Word docs, and similar attachments | Event — Media → Session files |
Session files (slides, handouts, PDFs) support a one-call multipart upload (
POST .../files/upload, max 50 MB) or direct-to-storage for larger files (up to 500 MB). Scopes: read:sessions / write:sessions. See Uploading session files and the Session Files API overview.Resource model
Transcription data uses four types, all tied to a session:| Type | Description |
|---|---|
fragment | Transcript text (synced by you or created when media transcription completes) |
summary | Structured summary content |
insight | Topics, entities, or key phrases |
translation | Translated text linked to a source artifact |
pagination with current_page, page_size, total_pages, and total_results.
Transcriptions
List event transcriptions
GET /v1/event//transcriptions
List session transcriptions
GET /v1/event//sessions//transcriptions
Get session transcription
GET /v1/event//sessions//transcriptions/
Create transcription
POST /v1/event//sessions//transcriptions
Session recordings
List session recordings
GET /v1/event//sessions//recordings
Start recording upload
POST /v1/event//sessions//recordings
Get session recording
GET /v1/event//sessions//recordings/
Complete recording upload
POST …/recordings//complete
Session files
Document attachments (PDF, PowerPoint, Word, images). Full playbook: Uploading session files. API overview: Session Files.List session files
GET /v1/event//sessions//files
Simple file upload
POST /v1/event//sessions//files/upload
Direct-to-storage create
POST /v1/event//sessions//files
Complete file upload
POST …/files//complete
Session files guide
Replace, update metadata, delete
Media upload
Start media upload
POST …/media/upload/initiate
Get media item status
GET /v1/event//sessions//media/
Related reference
- Media & Transcriptions guide — step-by-step playbooks
- Uploading session files — PDF and document attachments
- Session Files API overview
- Authentication & scopes

