SwiftGoma.SwiftGoma

Search endpoints

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

Dashboard

Get support overview

GET/api/v1/dashboard/support-overview

Snapshot for the support team's dashboard — open contact messages, pending KYC reviews, and recent moderation activity.

Requires Authorization
ADMIN, SUPPORT only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/dashboard/support-overview \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "openContactMessages": 6,
    "pendingKyc": 3,
    "blockedUsers": 2,
    "incidentsInProgress": 1
  }
}