List all chats for the current user
Optional
Array of managed chat objects
401 - Not authenticated
import { listChats } from "@cpod/sdk";const chats = await listChats();chats.forEach(chat => { console.log(`${chat.title} - ${chat.message_count} messages`);}); Copy
import { listChats } from "@cpod/sdk";const chats = await listChats();chats.forEach(chat => { console.log(`${chat.title} - ${chat.message_count} messages`);});
List all chats for the current user