getArchivedChatList

Lấy danh sách đoạn chat đã lưu trữ

api.getArchivedChatList()

Parameters

Return

Promise<GetArchivedChatListResponse>

Types

export type GetArchivedChatListResponse = {
    items: unknown[];
    version: number;
};

Examples

api.getArchivedChatList()
    .then(console.log)
    .catch(console.error);

Last updated