API Update cronjob script

I typoed

$request = new HTTPRequest(self::API_BASE . ‘/users/?id’ . $channelData[‘data’][‘id’]);

Should be

$request = new HTTPRequest(self::API_BASE . ‘/users/?id=’ . $channelData[‘data’][‘id’]);

Please refer to the documentation: