Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request PUT \
--url https://pria.praxislxp.com/api/user/setting/{settingId} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"key": "variable-2",
"value": "variable value",
"status": "active",
"admin_only": true,
"editable_others": true,
"institution_shared": true
}
'{
"success": true,
"message": "Setting updated!"
}Updates an existing setting by ID. Accepts any non-empty object as the request body; no specific fields are required. No institution ownership check is performed.
curl --request PUT \
--url https://pria.praxislxp.com/api/user/setting/{settingId} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"key": "variable-2",
"value": "variable value",
"status": "active",
"admin_only": true,
"editable_others": true,
"institution_shared": true
}
'{
"success": true,
"message": "Setting updated!"
}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
The unique identifier of the setting to update
At least one property must be provided. Any subset of fields can be sent.
Setting key name
"variable-2"
Setting value
"variable value"
Setting status
active, inactive, deleted "active"
Whether setting is admin-only
true
Whether setting can be edited by others
true
Whether setting is shared across institution
true
Was this page helpful?