Skip to main content
Notifications are messages or alerts sent to users or systems to inform them about specific events or updates related to vehicles, trips, or other activities within the c.technology platform.

Notification structure

Notifications are structured as follows:
{
    "id": "notif_01k5pq8tznf78s77cnhj0bz0ma",
    "type": "USER_BAT_V",  // Type of notification, e.g., USER_BAT_V (user battery voltage).
    "timestamp": "2025-09-21T18:06:08+0000",  // Time the notification was created.
    "priority": "HIGH",  // Priority of the notification: LOW, MEDIUM, HIGH.
    "vehicle_id": "veh_01jnk61et0fxkbvb3t05w9gv0d",  // The vehicle the notification is associated with.
    "title": "Notification from c.technology",  // Human-readable title of the notification.
    "message": "Demo Electric Motorcycle : low battery.",
    "data": {  // Additional data associated with the notification.
        "battery_voltage": 10.035
    },
    "read": false  // Indicates if the notification has been read by the user.
}
I