TPMS Resolved Event

The TPMS_RESOLVED_EVENT is triggered when a previously reported tire pressure issue (Low or High) returns to normal levels. Once the system confirms the resolution, it periodically (every minute) publishes the event payload to the configured webhook, indicating that the tire pressure condition is no longer active.

Event Name: TPMS_RESOLVED_EVENT

Enablement Package: Tire Pressure Monitoring System


Trigger Condition

  • The event is triggered periodically (every minute).
  • The system must detect that a previously triggered LOW_TIRE_PRESSURE or HIGH_TIRE_PRESSURE event has been resolved and tire pressure has returned to normal.

Example Payload

{
"fixQuality": 0,
"deviceTypeId": 1,
"serialNumber": "2210401015",
"locationTime": 1723023925000,
"subTypes": "Low Pressure Resolved",
"type": "TPMS_RESOLVED_EVENT",
"deviceSerial": "2210401015",
"messageType": "LOW_TIRE_PRESSURE",
"tirePressureType": 1,
"vendorTypeId": 1,
"location": {
"latitude": "28.639597",
"longitude": "-81.444089"
},
"correlationId": 46,
"tirePosition": "Right Rear Tire"
}

Reference

Field

Description

fixQuality
Integer

GPS fix quality at the time of the event.
Example: 0

deviceTypeId
Integer

Device type identifier
Example: 1

serialNumber
Integer

Device serial number reported for the event.
Example: "2210401015"

locationTime
Time Stamp

Timestamp when the location/event occurred.
Example: 1723023925000

subTypes
String

Resolved tire pressure condition subtype.
Example: Low Pressure Resolved

type
String

Event type name.
Example: TPMS_RESOLVED_EVENT

deviceSerial
Integer

Serial number of the TPMS-enabled device.
Example: 2210401015

messageType
String

Original event type that has now been resolved.
Example: LOW_TIRE_PRESSURE

tirePressureType
Integer

Type of the tire pressure event. Example: 1(1 = Low pressure).

vendorTypeId
Integer

Vendor type for TPMS sensor. Example: 1

latitude
Double

Event location latitude.
Example: 28.639597

longitude
Double

Event location longitude.
Example: -81.444089

correlationId
Integer

ID linking this event with the original tire pressure alert.
Example: 46

tirePosition
String

Tire position where issue was resolved.
Example: Right Rear Tire