x402-chainlink
    Preparing search index...

    Interface CREWorkflowResponse

    CRE workflow response This is the response from the CRE workflow HTTP trigger

    interface CREWorkflowResponse {
        action: string;
        consensus?: CREConsensusInfo;
        durationMs?: number;
        error?: { code: string; details?: unknown; message: string };
        executionId?: string;
        mode?: CREExecutionMode;
        settlement?: CRESettlementResult;
        success: boolean;
        timestamp?: number;
        verification?: CREVerificationResult;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: string

    Action that was executed

    consensus?: CREConsensusInfo

    Consensus information

    durationMs?: number

    Execution duration in milliseconds

    error?: { code: string; details?: unknown; message: string }

    Error information

    executionId?: string

    Unique execution ID

    Execution mode used

    settlement?: CRESettlementResult

    Settlement result (if settle or verify_and_settle)

    success: boolean

    Whether the workflow executed successfully

    timestamp?: number

    Timestamp of response

    verification?: CREVerificationResult

    Verification result (if verify or verify_and_settle)