Returned when an item in the conversation is deleted by the client with a conversation.item.delete event. This event is used to synchronize the server's understanding of the conversation history with the client's view.

interface ConversationItemDeletedEvent {
    event_id: string;
    item_id: string;
    type: "conversation.item.deleted";
}

Properties

Properties

event_id: string

The unique ID of the server event.

item_id: string

The ID of the item that was deleted.

type: "conversation.item.deleted"

The event type, must be conversation.item.deleted.