Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request DELETE \
--url https://pria.praxislxp.com/api/user/data \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"dialogues": true,
"vault": true,
"memory": true,
"assistants": true,
"feedback": true,
"sessions": true
}
'{
"success": true,
"dialoguesForgotten": 123,
"uploadsDeleted": 123,
"bytesFreed": 123,
"memoryDeleted": 123,
"assistantsDeleted": 123,
"feedbackDeleted": 123,
"sessionsDeleted": 123,
"compactionCachePurged": 123,
"uploadsFailed": [
{
"uploadId": "<string>",
"error": "<string>"
}
]
}Atomic per-class soft-delete. At least one of dialogues / vault must be true. Personal-scope only — institution rows are filtered out before any mutation. Idempotent: re-running returns zeros once everything is already soft-deleted. Vault deletes go through rag.fileDelete to clear embeddings + KAG cascade + physical file before flipping status='deleted' and stamping deleted_at. Per-upload failures from rag.fileDelete are collected in uploadsFailed and the status flip is skipped on those rows so a retry can re-attempt the physical removal.
curl --request DELETE \
--url https://pria.praxislxp.com/api/user/data \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"dialogues": true,
"vault": true,
"memory": true,
"assistants": true,
"feedback": true,
"sessions": true
}
'{
"success": true,
"dialoguesForgotten": 123,
"uploadsDeleted": 123,
"bytesFreed": 123,
"memoryDeleted": 123,
"assistantsDeleted": 123,
"feedbackDeleted": 123,
"sessionsDeleted": 123,
"compactionCachePurged": 123,
"uploadsFailed": [
{
"uploadId": "<string>",
"error": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
JWT token passed in x-access-token header
At least one of dialogues, vault, memory, assistants, feedback, or sessions must be true.
Flip personal History.forgotten to true (records survive for billing aggregates). Cascades: historyCompactionCache rows derived from these dialogues are hard-deleted.
Soft-delete personal uploads (status='deleted'), remove embeddings + physical file
Hard-delete the user's personal Memory rows (institution:null). Mirrors DELETE /api/user/memory/personal scope semantics.
Soft-delete the user's personal Assistant rows (status -> 'deleted'). Rows survive for historical references (audit, conversation backfill) but are hidden from the chooser.
Soft-delete Feedback rows authored by the user (status -> 'deleted'). Scope is user only — institutional context at submission time is ignored.
Hard-delete login session records (IP / browser / device fingerprints). Does NOT log the user out of other tabs — the JWT cookie is independent of these audit rows.
Counts of what was deleted
true
Personal Memory rows hard-deleted by this request
Personal Assistant rows soft-deleted by this request
Feedback rows soft-deleted by this request
Session records hard-deleted by this request
HistoryCompactionCache rows hard-deleted as a cascade from dialogues delete
Per-upload failures from the rag.fileDelete call (status flip is skipped on these so a retry can re-attempt)
Show child attributes
Was this page helpful?