@cobaltio/cobalt-js
    Preparing search index...

    Interface GetExecutionsParams

    Parameters for filtering and paginating the list of workflow executions.

    interface GetExecutionsParams {
        end_date?: string;
        execution_source?: ExecutionSource;
        execution_type?: ExecutionType;
        limit?: number;
        page?: number;
        start_date?: string;
        status?: ExecutionStatus;
        workflow_id?: string;
        workflow_name?: string;
        [key: string]: string | number | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: string | number | undefined

      Any additional filter keys supported by the API.

    Index

    Properties

    end_date?: string

    Filter executions that started on or before this ISO 8601 date string.

    execution_source?: ExecutionSource

    Filter by the trigger source that initiated the execution.

    execution_type?: ExecutionType

    Filter by how the execution was invoked — synchronously or asynchronously.

    limit?: number
    page?: number
    start_date?: string

    Filter executions that started on or after this ISO 8601 date string.

    Filter executions by their current status.

    workflow_id?: string

    Filter executions by workflow ID.

    workflow_name?: string

    Filter executions by workflow name (partial match).