Description
List the Balance Transaction History for a Client
Parameters
Code Block | ||
---|---|---|
| ||
client_account_code |
Request
Code Block | ||
---|---|---|
| ||
curl -X POST \ |
...
-H "Authorization: Token d37fa8c4e008fec158070b1b4aea5f0db3d6a06e" \ |
...
-H "Content-Type: application/json" \ |
...
-d '{"client_account_code":"1480270993"}' \ |
...
-k https://your.domain.com/api/users/get_balance_history |
Response
Code Block | ||
---|---|---|
| ||
{ |
...
"status": "success", |
...
"results": [ |
...
{ |
...
"date": "2019-01-07T13:20:46.727337Z", |
...
"confirmed": true, |
...
"balance": "1.000", |
...
"description": "Test credit", |
...
"value": "1.000" |
...
} |
...
] |
...
} |