Skip to main content

Cart Incidents API

Track and manage golf cart incidents.

List Incidents

GET /api/v1/cart-incidents

Query Parameters

ParameterTypeDescription
fromdateStart date
todateEnd date
statusstringFilter 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.