import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const chats = await client.chat.list();
console.log(chats);[
{}
]List chat conversations available to the current user.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const chats = await client.chat.list();
console.log(chats);[
{}
]Was this page helpful?