v1
latestOpenAPI 3.1.02026-07-2414238909.1 KBGet your account transactions
Get all your account transcatiors
get/accounts/me/transactions
Query parameters
fromstring date required
ISO-8601 date-time format
tostring date required
ISO-8601 date-time format
pageinteger
The page number to retrieve, default value is 0 (meaning the first page).
sizeinteger
The number of items to retrieve
Headers
Authorizationstring
Bearer {access_token}
Response
200
Example response
{
"totalPages": 5,
"totalElements": 100,
"numberOfElements": 1,
"first": true,
"size": 20,
"content": [
{
"id": "1125",
"transactionType": "TopUp",
"amount": "100",
"status": "Completed",
"balanceBefore": "0.01",
"balanceAfter": "100.01",
"date": "2017-01-02T17:00:00.000Z",
"actions": [
{
"id": "32",
"type": "Status Changed",
"amount": "100",
"date": "2017-01-02T17:01:00.000Z",
"balanceBefore": "100.01",
"balanceAfter": "0.01",
"status": "Completed"
}
]
}
]
}