Search and retrieve accounts
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>"
}Admin Accounts
Search and retrieve accounts
Retrieves a paginated list of accounts with institution usage statistics
POST
/
api
/
admin
/
accounts
Search and retrieve accounts
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>"
}Authorizations
JWT token passed in x-access-token header
Body
application/json
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)
Required range:
x >= 1Number of results per page
Required range:
1 <= x <= 5000Response
Successfully retrieved account list
Was this page helpful?
⌘I