Vehicle Updation
The Vehicle Updation event is used to notify whenever a vehicle is edited or updated.
Event Type:VEHICLE_UPDATE
Trigger Condition
Subscription to the VEHICLE_UPDATE event is mandatory. This event is triggered in real-time when the vehicle details are updated.
Example Payload
{
"eventInfo": {
"actionBy": "060b46ff-28c5-11e7-a9c6-77fb7b8afa1b"
},
"messageType": "VEHICLE_UPDATE",
"entityName": "ironman1",
"customerId": 5134,
"action": "Update",
"entityId": "3ef1a767-03df-11f0-8eab-a94cae96e364",
"time": 1742293888806
}
Reference
Field | Description |
---|---|
eventInfo JSONObject actionBy String,UUID | The unique Azuga ID of the user who performed the action Example: 060b46ff-28c5-11e7-a9c6-77fb7b8afa1b |
messageType String | Type of message Example: "VEHICLE_UPDATE" |
entityName String | Name of the Vehicle Example: ironman1 |
customerId Long | The unique Azuga ID of the Customer Example: 5134 |
action String | Action Performed Example: Update |
entityId String,UUID | The unique Azuga ID of the Vehicle. This is automatically generated when the Vehicle object is updated and cannot be altered. Example: 3ef1a767-03df-11f0-8eab-a94cae96e364 |
time Time Stamp | Time when event is created in milliseconds Example: 1742293888806 |
Updated 15 days ago