SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Dashboard

Get accountant overview

GET/api/v1/dashboard/accountant-overview

Snapshot 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
  }
}