Get Started
Put It on a Screen
Playlists rotate dashboards on an unattended display.
Checklist step
This page is step
create_playlist of the onboarding checklist the product shows you, told API-first.A playlist is an ordered rotation of dashboards with a share token, built for a TV that nobody logs into.
List tv playlists — GET /api/v1/playlists
curl "https://trydozer.com/api/v1/playlists?status=active" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_northpit"What is playing on the office TV?data_query {
"collection": "playlists",
"where": {
"status": "active"
}
}{
"object": "list",
"data": [
{
"object": "playlist",
"id": "obj_123",
"name": "Little Flake Mine Office Loop",
"status": "active",
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}
],
"has_more": false,
"next_cursor": null
}Share tokens, revocation and the unattended-screen rules: TV & Dashboards.
Next: Operate Day to Day.