@contio/partner-sdk - v1.7.1
    Preparing search index...

    Interface MeetingContextDocument

    A partner-scoped meeting context document.

    Context documents are scoped to the partner application that created them — each partner can only see and manage documents it has uploaded.

    interface MeetingContextDocument {
        context_type?: string;
        created_at: string;
        created_by_user_id: string;
        deleted_at?: string;
        document_id: string;
        file_status: string;
        id: string;
        meeting_id: string;
        partner_app_id: string;
        platform_name: string;
        source_format: ContextSourceFormat;
        title?: string;
        updated_at: string;
        workspace_id: string;
    }
    Index

    Properties

    context_type?: string

    Logical context type supplied by the partner at upload time.

    This is a free-form string that partners use to categorise documents (e.g. "agenda", "crm_record", "project_brief").

    created_at: string

    ISO 8601 timestamp of creation

    created_by_user_id: string

    ID of the user who uploaded the document

    deleted_at?: string

    ISO 8601 timestamp of soft-deletion, if applicable

    document_id: string

    Identifier for the underlying document in the storage layer

    file_status: string

    Processing status of the document (e.g. "pending", "processing", "complete", "error")

    id: string

    Unique identifier for the context record

    meeting_id: string

    Meeting this context document is associated with

    partner_app_id: string

    Partner application that uploaded the document

    platform_name: string

    Display name of the partner platform

    source_format: ContextSourceFormat

    Source format declared at upload time

    title?: string

    Human-readable document title

    updated_at: string

    ISO 8601 timestamp of last update

    workspace_id: string

    Workspace that owns the meeting