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/assistantLikesCount/{id} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"liked_count": 1
}
'{
"success": true,
"message": "Assistant updated!"
}Increments the liked_count field of an assistant using MongoDB $inc operator. The liked_count value from the request body is added to the current count (can be negative to decrement). Any authenticated user can call this endpoint.
curl --request PUT \
--url https://pria.praxislxp.com/api/user/assistantLikesCount/{id} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"liked_count": 1
}
'{
"success": true,
"message": "Assistant 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 assistant to update
Value to increment the liked_count by (use negative to decrement). Uses MongoDB $inc operator.
1
Was this page helpful?