List all chats within a project
The unique identifier of the project
Array of project chats
401 - Not authenticated
404 - Project not found
import { listProjectChats } from "@cpod/sdk";const chats = await listProjectChats("project-123");chats.forEach(chat => { console.log(`${chat.title} - ${chat.message_count} messages`);}); Copy
import { listProjectChats } from "@cpod/sdk";const chats = await listProjectChats("project-123");chats.forEach(chat => { console.log(`${chat.title} - ${chat.message_count} messages`);});
List all chats within a project