@archastro/sdk
    Preparing search index...

    Interface AgentRoutineRunDelivery

    Normalized destination and status for an agent routine run's final-result delivery.

    interface AgentRoutineRunDelivery {
        delivered_at?: string;
        delivered_message?: string;
        last_error?: string;
        message?: string;
        status: "pending" | "failed" | "delivered" | "not_requested";
        thread?: string;
        type: "thread" | "none" | "reply";
    }
    Index

    Properties

    delivered_at?: string

    When delivery completed successfully (ISO 8601).

    delivered_message?: string

    ID of the message created by a successful delivery (msg_...).

    last_error?: string

    Stable public error code for the most recent failed delivery attempt.

    message?: string

    Source message ID (msg_...) when the delivery is a reply.

    status: "pending" | "failed" | "delivered" | "not_requested"

    Current delivery lifecycle status.

    thread?: string

    Destination thread ID (thr_...) when delivery was requested.

    type: "thread" | "none" | "reply"

    Normalized delivery mode.