import Reminix from '@reminix/sdk';
const client = new Reminix({
apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});
await client.conversations.delete('x');
{
"error": "Invalid or missing API key"
}
Conversations
Delete a conversation
Delete a conversation and all its messages. This action cannot be undone.
DELETE
/
conversations
/
{id}
JavaScript
import Reminix from '@reminix/sdk';
const client = new Reminix({
apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});
await client.conversations.delete('x');