HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias UpdateEventRequest

    Request to update an existing event

    type UpdateEventRequest = {
        children_ids?: string[];
        config?: { [key: string]: unknown };
        duration?: number;
        end_time?: number;
        event_id: string;
        feedback?: { [key: string]: unknown };
        metadata?: { [key: string]: unknown };
        metrics?: { [key: string]: unknown };
        outputs?: unknown;
        user_properties?: { [key: string]: unknown };
    }
    Index

    Properties

    children_ids?: string[]

    IDs of child events to set (must be non-empty; an empty array is ignored)

    config?: { [key: string]: unknown }

    Configuration fields to merge into the event

    duration?: number

    Event duration in milliseconds

    end_time?: number

    Unix timestamp in milliseconds for event end

    event_id: string

    Event ID to update

    feedback?: { [key: string]: unknown }

    Feedback fields to merge into the event

    metadata?: { [key: string]: unknown }

    Metadata fields to merge into the event

    metrics?: { [key: string]: unknown }

    Metric values to merge into the event

    outputs?: unknown

    Output data to replace on the event (accepts objects, strings, arrays, or scalars)

    user_properties?: { [key: string]: unknown }

    User properties to merge into the event