@makehq/sdk
    Preparing search index...

    Type Alias IncompleteExecution

    Represents an incomplete execution (DLQ item) in Make. Incomplete executions are scenario runs that didn't complete successfully due to errors that prevented normal completion.

    type IncompleteExecution = {
        attempts: number;
        companyId?: number;
        companyName?: string;
        created: string;
        deleted?: boolean;
        executionId?: string;
        id: string;
        index?: number;
        reason?: string;
        resolved: boolean;
        retry: boolean;
        scenarioId?: number;
        scenarioName?: string;
        size: number;
    }
    Index

    Properties

    attempts: number

    Number of retry attempts made

    companyId?: number

    ID of the team this execution belongs to

    companyName?: string

    Name of the team this execution belongs to

    created: string

    Timestamp when the incomplete execution was created

    deleted?: boolean

    Whether the incomplete execution has been deleted

    executionId?: string

    ID of the original execution

    id: string

    Unique identifier of the incomplete execution

    index?: number

    Sequence number of the incomplete execution in the queue

    reason?: string

    Reason for the incomplete execution

    resolved: boolean

    Whether the incomplete execution has been resolved

    retry: boolean

    Whether automatic retry is enabled

    scenarioId?: number

    ID of the scenario this execution belongs to

    scenarioName?: string

    Name of the scenario this execution belongs to

    size: number

    Size of the incomplete execution bundle in bytes