Skip to main content

Connected Clients

A compact summary of today's connected-client counts grouped by gateway — one row per gateway with the total number of unique clients seen so far today. For per-client records (MAC, IP, hostname), see Clients.


Client count summary GET /v1/connected_clients

Returns today's connected client count per gateway, ordered by client count descending.

Response object

  • siteCodestring

    Site identifier for the gateway.

  • deviceNamestring

    Display name of the gateway or access point.

  • gatewayIdstring

    Unique identifier of the gateway device. Matches gatewayId on /v1/clients and gatewayId on /v1/devices.

  • clientCountinteger

    Number of unique clients seen today on this gateway.

  • lastUpdatedAttimestamp

    When the count was last refreshed.

GET/v1/connected_clients
curl https://polaris.revlv.com/v1/connected_clients \
-H "Authorization: Bearer {token}"
Response
{
"data": [
{
"siteCode": "REV-001-001",
"deviceName": "Site A Gateway",
"gatewayId": "d1e2f3a4-b5c6-7890-abcd-ef1234567890",
"clientCount": 14,
"lastUpdatedAt": "2026-05-02T10:25:00Z"
},
{
"siteCode": "REV-001-002",
"deviceName": "Site B Gateway",
"gatewayId": "e2f3a4b5-c6d7-8901-bcde-f12345678901",
"clientCount": 7,
"lastUpdatedAt": "2026-05-02T10:25:00Z"
}
]
}