Get Started
Operate Day to Day
Tickets, shift reports, and the crew who close them.
Checklist step
This page is step
screen_played of the onboarding checklist the product shows you, told API-first.Once the site is on screen, the day-to-day work is the interesting part.
List repair tickets — GET /api/v1/repair-tickets
curl "https://trydozer.com/api/v1/repair-tickets?status=in_progress" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_northpit"What tickets are still open?data_query {
"collection": "repair_tickets",
"where": {
"status": "in_progress"
}
}{
"object": "list",
"data": [
{
"object": "repair-ticket",
"id": "obj_123",
"title": "Hydraulic leak at the boom cylinder",
"description": "Hydraulic leak at the boom cylinder — flagged on pre-trip",
"location": "North Pit",
"diagnosis": "Worn cylinder seal; replacement ordered",
"hours_worked": 1,
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}
],
"has_more": false,
"next_cursor": null
}Shift Reports capture what happened on a
shift; Mechanics and
Operators are the people who did it, and
repair-tickets join the two.
Depth: Daily Ops · Mechanic AI · Fault-code lookup.