### Count subscribers by state

`GET /api/v1/users/summary`

Fleet-health counters over exactly the same authority scope as the list, so a count and the rows behind it always agree.

- Authentication: manager session (JWT) or API token
- Permission: `prm_users_index` (View users)
- Risk: read

#### Response — 200 OK

```json
{
  "data": {
    "total": 812,
    "active": 640,
    "disabled": 44,
    "online": 318,
    "expired": 128
  }
}
```

#### Note

active means enabled AND not expired, not the bare enabled flag. total is every non-deleted subscriber, so the four other counters do not sum to it.

