Get list of account transfers
curl --request POST \
--url https://pria.praxislxp.com/api/admin/accountTransfers \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"page": 1,
"pageSize": 50,
"limitsearch": 123
}
'{
"success": true,
"data": [
{
"_id": "<string>",
"institution": "<string>",
"account": "<string>",
"user": "<string>",
"credits": 123,
"status": "active",
"created": "2023-11-07T05:31:56Z",
"transferMode": 1,
"note": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Admin Accounts
Get list of account transfers
Retrieves account transfer history with optional filtering
POST
/
api
/
admin
/
accountTransfers
Get list of account transfers
curl --request POST \
--url https://pria.praxislxp.com/api/admin/accountTransfers \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"account": "<string>",
"institution": "<string>",
"page": 1,
"pageSize": 50,
"limitsearch": 123
}
'{
"success": true,
"data": [
{
"_id": "<string>",
"institution": "<string>",
"account": "<string>",
"user": "<string>",
"credits": 123,
"status": "active",
"created": "2023-11-07T05:31:56Z",
"transferMode": 1,
"note": "<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.
Authorizations
JWT token passed in x-access-token header
Body
application/json
Response
200 - application/json
Account transfers retrieved successfully
Was this page helpful?
Transfer credits between account and institutionAdjust an account's credit balance (super admin only)
⌘I