Get systems status summary
Get systems heartbeat status summary for dashboard (requires Admin or Support role)
GET
/systems/totals
curl \
--request GET 'https://api.your-domain.com/api/systems/totals' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "system status retrieved",
"data": {
"total_systems": 1250,
"alive_systems": 1100,
"dead_systems": 100,
"zombie_systems": 50,
"timeout_minutes": 15
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}