
Just curious about an API observation.
If I do a GET inverter/{inverter_serial_number}/settings
I retrieve the IDs of all the settings for the inverter, such as...
}, {
"id" : "28",
"name" : "AC Charge 2 Start Time",
"validation" : "Value format should be HH:mm. Use correct time range for hour and minutes",
"validation_rules" : [ "date_format:H:i" ]
}, {
"id" : "29",
"name" : "AC Charge 2 End Time",
"validation" : "Value format should be HH:mm. Use correct time range for hour and minutes",
"validation_rules" : [ "date_format:H:i" ]
}, {
However, having played with changing my AC Charge 2 schedule, I revisted the list of settings again and find:
}, {
"id" : "102",
"name" : "AC Charge 2 Start Time",
"validation" : "Value format should be HH:mm. Use correct time range for hour and minutes",
"validation_rules" : [ "date_format:H:i" ]
}, {
"id" : "103",
"name" : "AC Charge 2 End Time",
"validation" : "Value format should be HH:mm. Use correct time range for hour and minutes",
"validation_rules" : [ "date_format:H:i" ]
}, {
Is there some subtle difference between "28" / "102" or perhaps ths is just a defect ?
