v11.84.0

➕ Additions | 🔧 Fixes | :page-facing-up: Documentation Updates


➕ Additions

POST /v2/notification/dispatch

For the upcoming functionality of Supporting Multiple Installations and to allow submitting a notification that corresponds to a specific installation, the optional gateway_eui field is now supported in the request body. The value for this field needs to be provided in decimal format.

Before:

"{
  ""code"": ""M019"",
  ""attributes"": {
    ""additionalProp1"": ""string"",
    ""additionalProp2"": ""string"",
    ""additionalProp3"": ""string""
  }
}"

Now:

"{
  ""code"": ""M019"",
  ""attributes"": {
    ""additionalProp1"": ""string"",
    ""additionalProp2"": ""string"",
    ""additionalProp3"": ""string""
  },
  ""gateway_eui"": ""9574384526952497152""
}"

🔧 Fixes

  • Ensuring that the GET /solar/production/daily endpoint returns the hourly breakdown in the PerHour field in the user's timezone. Users outside of the CET timezone would receive the breakdown shifted by the difference of their local timezone compared to CET.

:page-facing-up: Documentation Updates

PUSH Notifications JSON message moved from Upcoming changes to theNotifications section.