Type Alias AutomationDetailResponseObject

type AutomationDetailResponseObject = {
    connectorIds?: string[];
    createdAt?: string;
    description?: string;
    endpointIds?: string[];
    executionToken?: string;
    id?: string;
    lastRun?: automations.RunDetailResponseObject;
    lastRunAt?: string;
    lastRunStatus?:
        | "failed"
        | "finished"
        | "finished with warnings"
        | "must stop"
        | "not started"
        | "paused"
        | "running"
        | "starting"
        | "stopped"
        | "exceeded limit";
    maxConcurrentRuns?: number;
    name?: string;
    ownerId?: string;
    runMode?: "manual"
    | "scheduled"
    | "triggered"
    | "webhook";
    schedules?: automations.ScheduleResponseObject[];
    snippetIds?: string[];
    spaceId?: string;
    state?: "available" | "unavailable" | "disabled";
    updatedAt?: string;
    workspace?: unknown;
}
Index

Properties

connectorIds?: string[]

A list of connectors that were detected in the workspace. This includes connectors present in blocks that are not connected to other blocks. Order of GUIDs is not guaranteed.

createdAt?: string
description?: string
endpointIds?: string[]
executionToken?: string
id?: string
lastRunAt?: string
lastRunStatus?:
    | "failed"
    | "finished"
    | "finished with warnings"
    | "must stop"
    | "not started"
    | "paused"
    | "running"
    | "starting"
    | "stopped"
    | "exceeded limit"
maxConcurrentRuns?: number
name?: string
ownerId?: string
runMode?: "manual" | "scheduled" | "triggered" | "webhook"
snippetIds?: string[]
spaceId?: string
state?: "available" | "unavailable" | "disabled"
updatedAt?: string
workspace?: unknown