Overview
Delete an entire group (user) and all associated data from the knowledge graph.USE WITH EXTREME CAUTION! This permanently deletes ALL data for the user including:
- All episodes
- All facts
- All entities
- All relationships
Authentication
Your API key for authentication
Path Parameters
User identifier (group ID) to delete
Response
Confirmation message
Example Request
Example Response
Use Cases
User Account Deletion
When a user deletes their account (GDPR compliance)
Complete Data Reset
Reset all data for a user during testing or development
Privacy Compliance
Fulfill data deletion requests per privacy regulations
Best Practices
Always confirm user intent before calling this endpoint - implement a confirmation dialog in your UI
Consider implementing a “soft delete” first - mark the account as deleted in your database before actually deleting from the knowledge graph
For deleting specific conversations, use
DELETE /episodes/{group_id}/{source_description} instead