Returned when a conversation is created. Emitted right after session creation.

interface ConversationCreatedEvent {
    conversation: Conversation;
    event_id: string;
    type: "conversation.created";
}

Properties

conversation: Conversation

The conversation resource.

event_id: string

The unique ID of the server event.

type: "conversation.created"

The event type, must be conversation.created.