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

    Interface Automation

    Automation definition

    Automations enable automatic action item assignment based on phrase matching. When an action item from a meeting matches the automation's phrases, a automation assignment is created and a webhook is sent to the partner app.

    interface Automation {
        actions: AutomationAction[];
        created_at: string;
        description?: string;
        id: string;
        name: string;
        partner_app_id: string;
        status: AutomationStatus;
        trigger_type: string;
        updated_at: string;
    }
    Index

    Properties

    actions: AutomationAction[]

    Array of automation actions (currently supports phrase_match type)

    created_at: string
    description?: string
    id: string
    name: string
    partner_app_id: string
    trigger_type: string

    Currently only 'action_item_match' is supported

    updated_at: string