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/history/{id} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"favorite": true,
"forgotten": false,
"favorite_name": "Deployment Guide",
"course_name": "<string>",
"thumbUpDown": "up"
}
'{
"success": true,
"data": {},
"message": "History updated!"
}Updates a user’s history record with the provided properties. Accepts any valid history field in the body, not just favorite and forgotten. Returns the full updated document.
curl --request PUT \
--url https://pria.praxislxp.com/api/user/history/{id} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"favorite": true,
"forgotten": false,
"favorite_name": "Deployment Guide",
"course_name": "<string>",
"thumbUpDown": "up"
}
'{
"success": true,
"data": {},
"message": "History 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 ObjectId of the history record to update
Accepts any properties to update on the history document. Common fields include favorite and forgotten, but any valid history field is accepted.
Whether to mark the history item as favorite
true
Whether to soft-delete the dialogue from history
false
Custom name for a favorited record
"Deployment Guide"
Update the course name for this record
User feedback on the response
"up"
Was this page helpful?