Enable StatusNotification Translation
Translate Status Notification from 201 to 16
Customers can enable automatic translation of StatusNotification messages from OCPP 2.0.1 to OCPP 1.6 format by toggling the translate_status_notification_from_201_to_16 setting in the Admin Panel.
How to enable StatusNotification translation?
- Navigate to https://devapp.edrv.io/account/organization?tab=configurations and change the value for Enable Translation of Status Notification from 2.0.1 to 1.6.0 from "No" to "Yes"
- Click "Update" to save the changes
When enabled, this feature translates the StatusNotification data within the raw_message
field of the chargestation.connector_status.updated webhook payload.
{
"_id": "6825e9155d612600c88d9e6b",
"data": {
...
raw_message": {
"connectorId": 1,
"errorCode": "NoError",
"status": "Charging",
"timestamp": "2025-05-15T13:16:05.500Z",
"evseId": 1
}
...
"object": "chargestation",
"type": "chargestation.connector_status.updated",
"createdAt": "2025-05-15T13:16:05.711Z"
}
Updated 3 days ago