This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Akuvox intercome
#1
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-d...tp-command
Best Regards,
Reply
#2
(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-d...tp-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)
Reply
#3
(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-d...tp-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
Best Regards,
Reply
#4
Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated
Best Regards,
Reply
#5
(Yesterday, 13:39)khalil Wrote: Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated

Hi! Regarding your question about connecting the S657 intercom with LogicMachine using HTTP commands, you need to follow these configuration steps on both devices:

1. S657 Configuration
  • Security: Go to the Security > Basic Settings panel and make sure to disable high security mode.
  • Actions: The S657 allows you to send HTTP commands either directly from the intercom call or via a configurable button. You can set this up under Display Settings and Relay.

2. LogicMachine Configuration
  • Enable service: Go to System Configuration > Services > Remote Services and enable the Remote Services option. This allows the device to receive external HTTP commands.
  • Credentials: The username will be
    remote
    . Make sure to set your own password in that same section.

3. Functionality Test
To verify everything is working correctly before programming it into the intercom, open any web browser on the same network and run this test command (replace the placeholder data in parentheses with your actual details):
http://remote:(your_password)@(your_LM_IP)/scada-remote?m=json&r=grp&fn=write&alias=1/1/1&value=true

If the group address changes its state, the communication is ready to go.
Reply
#6
(Today, 06:50)davidchispas Wrote:
(Yesterday, 13:39)khalil Wrote: Hello Dears,
I am trying to send http commans from Akuvox S567 Touch Panel, to write on a GA

any help appreciated

Hi! Regarding your question about connecting the S657 intercom with LogicMachine using HTTP commands, you need to follow these configuration steps on both devices:

1. S657 Configuration
  • Security: Go to the Security > Basic Settings panel and make sure to disable high security mode.
  • Actions: The S657 allows you to send HTTP commands either directly from the intercom call or via a configurable button. You can set this up under Display Settings and Relay.

2. LogicMachine Configuration
  • Enable service: Go to System Configuration > Services > Remote Services and enable the Remote Services option. This allows the device to receive external HTTP commands.
  • Credentials: The username will be
    remote
    . Make sure to set your own password in that same section.

3. Functionality Test
To verify everything is working correctly before programming it into the intercom, open any web browser on the same network and run this test command (replace the placeholder data in parentheses with your actual details):
http://remote:(your_password)@(your_LM_IP)/scada-remote?m=json&r=grp&fn=write&alias=1/1/1&value=true

If the group address changes its state, the communication is ready to go.

Thank you very much.
Clear steps, appreciate that.

is there a secure way to do this?
this command will be used to open the main door of the house!
Best Regards,
Reply
#7
Try using HTTPS instead of HTTP and see if it works.
Reply


Forum Jump: