Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
curl --request POST \
--url https://pria.praxislxp.com/api/admin/sessions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"usersearch": "<string>",
"daterange": [
"2023-11-07T05:31:56Z"
],
"page": 1,
"pageSize": 100,
"limitsearch": 123
}
'{
"success": true,
"data": [
{}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Retrieves a paginated list of user sessions based on search criteria
curl --request POST \
--url https://pria.praxislxp.com/api/admin/sessions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"usersearch": "<string>",
"daterange": [
"2023-11-07T05:31:56Z"
],
"page": 1,
"pageSize": 100,
"limitsearch": 123
}
'{
"success": true,
"data": [
{}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<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.
JWT token passed in x-access-token header
Account ID(s) to filter sessions (space-separated for multiple)
Institution ID to filter sessions
Search term for users (matches email, first name, last name)
[startDate, endDate] — defaults to last 30 days if not provided
Page number (1-based)
x >= 1Number of results per page
1 <= x <= 5000DEPRECATED: Use pageSize instead
Successfully retrieved session list
Was this page helpful?