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.memories.delete('x');
Copy
{ "error": "Invalid request"}
Memories
Delete a memory
Delete a memory by key for a specific identity.
DELETE
/
memories
/
{key}
JavaScript
Copy
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.memories.delete('x');