Dashboard
Get support overview
GET
/api/v1/dashboard/support-overviewSnapshot 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
}
}