Overview
Clear ALL data from the entire system. This deletes everything - all groups, episodes, facts, entities, and relationships.EXTREMELY DESTRUCTIVE - NUCLEAR OPTION!This endpoint:
- Deletes ALL data for ALL users
- Is permanent and cannot be undone
- Should ONLY be used in development/testing environments
- Should NEVER be exposed in production applications
Authentication
Your API key for authentication
Response
Confirmation message
Example Request
Example Response
When to Use
Development/Testing Only
ONLY use in development or testing environments to reset the system state
Never in Production
Do NOT expose this endpoint in production applications - it will delete all user data
Safer Alternatives
Delete Single User
Delete Single User
Use
DELETE /group/{group_id} to delete a specific user’s dataDelete Conversation
Delete Conversation
Use
DELETE /episodes/{group_id}/{source_description} to delete a specific conversationDelete Single Episode
Delete Single Episode
Use
DELETE /episode/{uuid} to delete a specific episodeSecurity Recommendations
Production Safety Measures:
- Remove or restrict access to this endpoint in production
- Implement additional authentication layers if needed
- Add confirmation mechanisms with multiple steps
- Log all attempts to call this endpoint
- Consider rate limiting or IP whitelisting