Update an instance variable
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!"
}Setting
Update an instance variable
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.
PUT
/
api
/
user
/
setting
/
{settingId}
Update an instance variable
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.
Authorizations
JWT token passed in x-access-token header
Path Parameters
The unique identifier of the setting to update
Body
application/json
At least one property must be provided. Any subset of fields can be sent.
Setting key name
Example:
"variable-2"
Setting value
Example:
"variable value"
Setting status
Available options:
active, inactive, deleted Example:
"active"
Whether setting is admin-only
Example:
true
Whether setting can be edited by others
Example:
true
Whether setting is shared across institution
Example:
true
Was this page helpful?
⌘I