Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request PATCH \
--url https://pria.praxislxp.com/api/admin/institution/{id}/account \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>"
}
'{
"success": true,
"data": {
"_id": "<string>",
"name": "<string>",
"status": "<string>",
"ainame": "<string>",
"lastActivityAt": "2023-11-07T05:31:56Z",
"account": {
"_id": "<string>",
"name": "<string>"
}
},
"message": "<string>"
}Clean-room endpoint with strict field whitelisting. Only the account field is accepted.
Non-super users must have access to both the source institution and the target account.
Passing account: null detaches the institution from its parent account — super users only.
curl --request PATCH \
--url https://pria.praxislxp.com/api/admin/institution/{id}/account \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>"
}
'{
"success": true,
"data": {
"_id": "<string>",
"name": "<string>",
"status": "<string>",
"ainame": "<string>",
"lastActivityAt": "2023-11-07T05:31:56Z",
"account": {
"_id": "<string>",
"name": "<string>"
}
},
"message": "<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
Institution ID to reassign
Target account ID (or null to detach — super-only)
Was this page helpful?