OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Fetch the transcript for a specific meeting recording.
Goal
Expose meeting transcripts for downstream knowledge and analytics flows.
Context
Used by agents and dashboards to access the transcript for a selected meeting.
Source Definition
export const MeetingRecorderGetTranscript = defineQuery({
meta: {
key: 'meeting-recorder.transcripts.get',
version: '1.0.0',
description: 'Fetch the transcript for a specific meeting recording.',
goal: 'Expose meeting transcripts for downstream knowledge and analytics flows.',
context:
'Used by agents and dashboards to access the transcript for a selected meeting.',
owners: ['@platform.integrations'],
tags: ['meeting-recorder', 'transcripts'],
stability: 'experimental',
},
io: {
input: MeetingRecorderGetTranscriptInput,
output: MeetingTranscriptRecord,
},
policy: {
auth: 'user',
},
});