import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.chat.retrieveHistory('chat_id');
console.log(response);[
{
"role": "user",
"content": "<string>",
"timestamp": "<string>",
"agent_data": {}
}
]Retrieve the message history for a chat conversation.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.chat.retrieveHistory('chat_id');
console.log(response);[
{
"role": "user",
"content": "<string>",
"timestamp": "<string>",
"agent_data": {}
}
]Was this page helpful?