Save realtime conversation
curl --request POST \
--url https://pria.praxislxp.com/api/ai/rtSave/conversation \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"sessionId": "<string>",
"inputs": [
"<string>"
],
"outputs": [
"<string>"
],
"tools": [
{
"name": "<string>",
"success": true,
"responseDurationMs": 123
}
],
"usage": {
"input_tokens": 123,
"output_tokens": 123
}
}
'{
"success": true,
"historyId": "<string>"
}Realtime
Save realtime conversation
Saves a realtime conversation to history after the session ends. Records inputs, outputs, tool usage, and token consumption.
POST
/
api
/
ai
/
rtSave
/
conversation
Save realtime conversation
curl --request POST \
--url https://pria.praxislxp.com/api/ai/rtSave/conversation \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"sessionId": "<string>",
"inputs": [
"<string>"
],
"outputs": [
"<string>"
],
"tools": [
{
"name": "<string>",
"success": true,
"responseDurationMs": 123
}
],
"usage": {
"input_tokens": 123,
"output_tokens": 123
}
}
'{
"success": true,
"historyId": "<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.
Authorizations
JWT token passed in x-access-token header
Body
application/json
Was this page helpful?
⌘I