Dashboard
Get accountant overview
GET
/api/v1/dashboard/accountant-overviewSnapshot for the finance team's dashboard — pending expense approvals, subscription revenue, and payout activity.
Requires Authorization
ADMIN, ACCOUNTANT only
Session
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/dashboard/accountant-overview \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"pendingExpenseApprovals": 2,
"subscriptionRevenue": [
{
"currency": "USD",
"amount": "1280.00"
}
],
"payoutsToday": 5
}
}