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.
Ingest a webhook from a meeting recorder provider.
Goal
Trigger transcript syncs or downstream workflows without polling.
Context
Used by webhook handlers to validate and normalize provider webhook events.
Source Definition
export const MeetingRecorderWebhookIngest = defineCommand({
meta: {
key: 'meeting-recorder.webhooks.ingest',
version: '1.0.0',
description: 'Ingest a webhook from a meeting recorder provider.',
goal: 'Trigger transcript syncs or downstream workflows without polling.',
context:
'Used by webhook handlers to validate and normalize provider webhook events.',
owners: ['@platform.integrations'],
tags: ['meeting-recorder', 'webhooks', 'transcripts'],
stability: 'experimental',
},
io: {
input: MeetingRecorderWebhookIngestInput,
output: MeetingRecorderWebhookIngestOutput,
},
policy: {
auth: 'admin',
},
});