so… in my case after trying lots of the things suggested earlier in this post, on my rpi 4 with no luck, i decided to upgrade another domoticz server i have running on a pi zero to see if that displayed the same problem (as this is not running as many apps in the back ground as my rpi4 setup)
The pi zero server doesnt display the [WebServer] Depricated RType (devices) for API request error.
I started looking at the differences between the two devices and then remembered that the rpi4 has a touchscreen screen attached to it which runs a custom frontpage allowing me to control devices from that rather than the domoticz interface itself.
This is running as a different user, with the browser opening automatically on startup in kiosk mode.
Disabling this from automatically opening the browser, fixed the issue, so the custom front page is clearly using api calls that are no longer supported.
there are 3 commands in that page which could possibly be causing the issue.
If any one can see how to modify these to follow the new requirements, i would be grateful of any help.
var jurl=$.domoticzurl+"/json.htm?type=devices&plan="+$.roomplan+"&jsoncallback=?";
$(document).ready(function() {
$.roomplan=0; // define roomplan in Domoticz and create items below.
$.domoticzurl="
http://192.168.1.x:8080";
//format: idx, value, label, description, [override css], [alarm value]
url: "
http://192.168.1.x:8080/json.htm?type=c ... witchlight" + "&idx=" + idx + "&switchcmd=" + switchcmd + "&level=0"
I hope this is useful to some people to maybe at least to remind them to be conscious of other devices that maybe causing these issues..
thanks
Newpond