curl --request GET \
--url https://api.tessie.com/{vin}/firmware_alerts \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"timestamp": 1726683716,
"name": "VCFRONT_a361_washerFluidLowMomentary",
"description": null,
"recent_fleet_count": 123456
}
]
}
Returns the list of firmware alerts generated by a vehicle.
curl --request GET \
--url https://api.tessie.com/{vin}/firmware_alerts \
--header 'Authorization: Bearer <token>'
{
"results": [
{
"timestamp": 1726683716,
"name": "VCFRONT_a361_washerFluidLowMomentary",
"description": null,
"recent_fleet_count": 123456
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The associated VIN.
Success
The response is of type object
.