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>",
  "minimum": true
}
'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "fromAccount": "<string>",
      "toAccount": "<string>",
      "amount": 123,
      "type": "<string>",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Body

application/json
account
string

Filter by account ID

minimum
boolean

Return minimal data

Response

200 - application/json

Account transfers retrieved successfully

success
boolean
data
object[]