Skip to main content
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>",
      "fromAccount": "<string>",
      "toAccount": "<string>",
      "amount": 123,
      "type": "<string>",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "hasMore": true,
  "page": 123,
  "pageSize": 123,
  "message": "<string>"
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Body

application/json
account
string

Filter by account ID

institution
string

Filter by institution ID

page
integer
default:1

Page number (1-based)

Required range: x >= 1
pageSize
integer
default:50

Number of results per page

Required range: 1 <= x <= 5000
limitsearch
number
deprecated

DEPRECATED: Use pageSize instead

Response

200 - application/json

Account transfers retrieved successfully

success
boolean
data
object[]
total
integer

Total number of matching transfers

hasMore
boolean

Whether more results are available beyond the current page

page
integer

Current page number

pageSize
integer

Number of results per page

message
string