getTotalChats()
getTotalChats():
Promise<TotalChatsStats>
Defined in: packages/core/src/index.ts:3395
Get total chats statistics
Returns
Promise<TotalChatsStats>
Chat statistics and counts
Throws
401 - Not authenticated
Example
import { getTotalChats } from "@cpod/sdk";
const stats = await getTotalChats();
console.log(`Total chats: ${stats.total}`);