Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request POST \
--url https://pria.praxislxp.com/api/user/uploads/vault-health-summary \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"institution": "<string>"
}
'{
"success": true,
"summary": {
"totalCount": 123,
"activeCount": 123,
"errorCount": 123,
"neverUsedCount": 123,
"staleCount": 123,
"unscannedCount": 123,
"unoptimizedCount": 123,
"unindexedCount": 123
}
}Returns per-category counts across the entire vault (Personal / Instance / Account) — not scoped to the current collection or page. Used by the Files panel’s Vault Health header to compute the A-F grade and the attention dot. Computed via parallel $match + $count pipelines (DocumentDB-safe; no $facet).
curl --request POST \
--url https://pria.praxislxp.com/api/user/uploads/vault-health-summary \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"institution": "<string>"
}
'{
"success": true,
"summary": {
"totalCount": 123,
"activeCount": 123,
"errorCount": 123,
"neverUsedCount": 123,
"staleCount": 123,
"unscannedCount": 123,
"unoptimizedCount": 123,
"unindexedCount": 123
}
}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
Was this page helpful?