10. Dashboard statistics
To retrieve dashboard statistics, run following query:
query MyDashboard {
myDashboard {
annualExpectedReturn
availableBalance
averageReturn
investmentValue
rentsReceived
ownedTokens
totalProperties
}
}
Authorization: Bearer ACCESS_TOKEN
Response:
{
"data": {
"myDashboard": {
"annualExpectedReturn": 0,
"availableBalance": 0,
"averageReturn": 0,
"investmentValue": 0,
"rentsReceived": 0,
"ownedTokens": 0,
"totalProperties": 0
}
}
}