@makehq/sdk
    Preparing search index...

    Type Alias Execution

    Represents an execution of a Make scenario. Executions are the individual runs of scenarios, capturing information about each time a scenario was executed.

    type Execution = {
        authorId: number | null;
        duration: number;
        id: string;
        imtId: string;
        instant: boolean;
        operations: number;
        organizationId: number;
        status: number;
        teamId: number;
        transfer: number;
        type: string;
    }
    Index

    Properties

    authorId: number | null

    ID of the user who initiated the execution (if available)

    duration: number

    Duration of the execution in milliseconds

    id: string

    Unique identifier of the execution

    imtId: string

    Internal Make ID of the execution

    instant: boolean

    Whether the execution was run instantly

    operations: number

    Number of operations consumed by the execution

    organizationId: number

    ID of the organization the execution belongs to

    status: number

    Status of the execution (0 = pending, 1 = successful, 2 = successful with warnings, 3 = failed)

    teamId: number

    ID of the team the execution belongs to

    transfer: number

    Amount of data transfer consumed by the execution

    type: string

    Type of execution (e.g., 'scheduled', 'manual')