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.

meeting-recorder.webhooks.ingest

Ingest a webhook from a meeting recorder provider.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, webhooks, transcripts
  • field.key.label
    meeting-recorder.webhooks.ingest
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    meeting-recorder.webhooks.ingest
    field.description.label

    Ingest a webhook from a meeting recorder provider.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: meeting-recorder, webhooks, transcripts
  • field.tags.label
    meeting-recorder,webhooks,transcripts
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    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',
      },
    });