moneyIn field represents the total amount of money received, while moneyOut represents the total amount of money spent. The balance field indicates the current balance, and the percentageChangeInMoneyIn, percentageChangeInMoneyOut, and percentageChangeInBalance fields show the percentage change in money in, money out, and balance respectively.Authorization: Bearer ********************curl --location --request GET '/home/business-transaction-report' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Business transaction report fetched successfully !",
"data": {
"moneyIn": "₦0.00",
"moneyOut": "₦0.00",
"balance": "₦0.00",
"percentageChangeInMoneyIn": 0,
"percentageChangeInMoneyOut": 0,
"percentageChangeInBalance": 0
}
}