GET All Chat Info

https://127.0.0.1:{port}/chat/v6/conversations

Get information about all active conversations

Headers:

URL Parameters:

Other Variables:

Response:

type AllChatInfoResponse = {
    conversations: {
        cid: string;
        direct_messages: boolean;
        global_readership: boolean;
        message_history: boolean;
        mid: string;
        muted: boolean;
        mutedRestriction: boolean;
        type: "groupchat" | "chat";
        uiState: {
            changedSinceHidden: boolean;
            hidden: boolean;
        };
        unread_count: number;
    }[];
};