Returns all datacollectors (Poolbox units) assigned to the authenticated company, including the number of machines currently connected to each datacollector.
Authentication
Requires the X-API-Key header.
Query parameters
None.
Response (200 OK)
| Field | Type | Description |
|---|---|---|
data[].id | string | Datacollector identifier (Poolbox unit ID). |
data[].id_location | integer | ID of the location this datacollector is assigned to. |
data[].last_seen | string (date-time) | Last time the datacollector reported in. |
data[].machine_count | integer | Number of machines connected to this datacollector. |
Example response
{
"data": [
{ "id": "POOL-001", "id_location": 1, "last_seen": "2026-05-18T08:14:23Z", "machine_count": 4 }
]
}