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

    Interface ExecutionFilters

    Filters for narrowing down the list of workflow executions.

    interface ExecutionFilters {
        end_date?: string;
        execution_source?: ExecutionSource;
        execution_type?: ExecutionType;
        start_date?: string;
        status?: ExecutionStatus;
        workflow_id?: string;
        workflow_name?: string;
    }

    Hierarchy (View Summary)

    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.

    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).