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/accounts \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"accountsearch": "<string>",
"activeOnly": false,
"minimum": true,
"insitutionsUsage": true,
"page": 1,
"pageSize": 50
}
'{
"success": true,
"data": [
{}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Retrieves a paginated list of accounts with institution usage statistics
curl --request POST \
--url https://pria.praxislxp.com/api/admin/accounts \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"accountsearch": "<string>",
"activeOnly": false,
"minimum": true,
"insitutionsUsage": true,
"page": 1,
"pageSize": 50
}
'{
"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
Case-insensitive search term matched against account name and managerEmail (regex-escaped)
When true, restrict to accounts that have actually been used (lastActivityAt is set, not null).
Whether to return minimal account data (bypasses pagination)
When true, includes an institutionsUsage summary (count, credits, creditsUsed, creditsTotal, creditsUsagePct) aggregated across the account's institutions
Page number (1-based)
x >= 1Number of results per page
1 <= x <= 5000Successfully retrieved account list
Was this page helpful?