Due to this warning below webservice will not work at all
[PHP Warning #2] count(): Parameter must be an array or an object that implements Countable (/var/www/clients/client17/web51/web/classes/webservice/WebserviceRequest.php, line 800)
So we have to change line 800 from
if (count(self::$shopIDs)) {
to
if (self::$shopIDs && count(self::$shopIDs)) {
We use the latest version of prestashop 1.7.4.3 which have to be compatible with php 7.2. ??