LogicMachine Forum
Akuvox intercome - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2)
+--- Thread: Akuvox intercome (/showthread.php?tid=6156)



Akuvox intercome - khalil - 15.10.2025

Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command


RE: Akuvox intercome - davidchispas - 16.10.2025

(15.10.2025, 08:08)khalil Wrote: Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command



Yes, that works fine.

If the video intercom has the 'High Security Mode' option, you need to disable it.

Then add the following script to LM:

Code:
require('socket.http')
url = 'http://{device_AKUVOX_IP}/fcgi/do?action=OpenDoor&UserName=admin&Password=12345&DoorNum=1'
res, err = socket.http.request(url)
log(res, err)



RE: Akuvox intercome - khalil - 19.10.2025

(16.10.2025, 11:16)davidchispas Wrote:
(15.10.2025, 08:08)khalil Wrote: Hello Dears,
Has anyone successfully sent an "open" command to an Akuvox intercom using SL?
I found this from Akuvox 
https://knowledge.akuvox.com/docs/open-door-via-http-command



Yes, that works fine.

If the video intercom has the 'High Security Mode' option, you need to disable it.

Then add the following script to LM:

Code:
require('socket.http')
url = 'http://{device_AKUVOX_IP}/fcgi/do?action=OpenDoor&UserName=admin&Password=12345&DoorNum=1'
res, err = socket.http.request(url)
log(res, err)

Thank you dear