Cart Incidents API
Track and manage golf cart incidents.
List Incidents
GET /api/v1/cart-incidents
Query Parameters
| Parameter | Type | Description |
|---|---|---|
from | date | Start date |
to | date | End date |
status | string | Filter by status |
Response
{
"data": [
{
"id": "incident_123",
"cartId": "cart_456",
"type": "damage",
"description": "Minor scratch on bumper",
"reportedAt": "2026-02-10T14:30:00Z",
"status": "open"
}
]
}
Report Incident
POST /api/v1/cart-incidents
See the full API reference for complete details.