Get Started
Create a Dashboard
A dashboard is a saved view of live data, not a screenshot.
Checklist step
This page is step
create_dashboard of the onboarding checklist the product shows you, told API-first.List dashboards — GET /api/v1/dashboards
curl "https://trydozer.com/api/v1/dashboards?status=active" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_northpit"Which dashboards are live right now?data_query {
"collection": "dashboards",
"where": {
"status": "active"
}
}{
"object": "list",
"data": [
{
"object": "dashboard",
"id": "obj_123",
"name": "Washplants",
"status": "active",
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}
],
"has_more": false,
"next_cursor": null
}Sort by -last_live_data_at to put the machines that just reported at the top —
and, more usefully, the ones that have not reported at the bottom where somebody
will notice. What that field means:
Devices & Media.
Next: Put It on a Screen.