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/stripePayments \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"usersearch": "<string>",
"page": 1,
"pageSize": 100,
"limitsearch": 123
}
'{
"success": true,
"data": [
{
"_id": "<string>",
"date": "2023-11-07T05:31:56Z",
"user": {
"_id": "<string>",
"email": "<string>",
"fname": "<string>",
"lname": "<string>"
},
"institution": {
"_id": "<string>",
"name": "<string>"
},
"amount": 123,
"currency": "<string>",
"credits": 123,
"plan": "<string>",
"source": "<string>",
"description": "<string>",
"invoiceUrl": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Retrieves a paginated list of Stripe payments with optional filtering by account, institution, or user search
curl --request POST \
--url https://pria.praxislxp.com/api/admin/stripePayments \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"usersearch": "<string>",
"page": 1,
"pageSize": 100,
"limitsearch": 123
}
'{
"success": true,
"data": [
{
"_id": "<string>",
"date": "2023-11-07T05:31:56Z",
"user": {
"_id": "<string>",
"email": "<string>",
"fname": "<string>",
"lname": "<string>"
},
"institution": {
"_id": "<string>",
"name": "<string>"
},
"amount": 123,
"currency": "<string>",
"credits": 123,
"plan": "<string>",
"source": "<string>",
"description": "<string>",
"invoiceUrl": "<string>"
}
],
"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 payments (space-separated for multiple)
Institution ID to filter payments
Search term for users (matches email, first name, last name)
Page number (1-based)
x >= 1Number of results per page
1 <= x <= 5000Legacy limit parameter (use pageSize instead)
Successfully retrieved payments list
Was this page helpful?