HomeyPro with KSenia Security

@Mike1233 Mike, the way I read it, I think he wants to send http request towards Homey :wink:

@Tamas_Kovacs Hello, and welcome,

(Translated from posts in German)
Make a GET request with one of these URLs:

.

Since the communication probably only takes place at home, you can use the local webhooks (why use internet when you don’t need it).
Note, all is case-sensitive

  • for the Pro23
    When we have the event ‘PIR_frontdoor’, and it sends the values alarmTrue and alarmFalse, we can use the webhook like this.
    As example Homey’s IP address (make sure it has a DHCP reserved IP!) is 192.168.2.50:
    http://<homey-ip>/webhook?event=my_event&tag=my_tag can be used as:
    http://192.168.2.50/webhook?event=PIR_frontdoor&tag=alarmTrue
    http://192.168.2.50/webhook?event=PIR_frontdoor&tag=alarmFalse

  • for the Pro19 (all white balls)
    http://<homey-ip>/api/manager/logic/webhook/my_event?tag=my_tag can be used as:
    http://192.168.2.50/api/manager/logic/webhook/PIR_frontdoor?tag=alarmTrue
    http://192.168.2.50/api/manager/logic/webhook/PIR_frontdoor?tag=alarmFalse

The corresponding flow which ‘listens’ for the frontdoor PIR webhooks, should look like this:

(the yellow action cards on the left for instance can be a virtual motion sensor device, which ‘mirrors’ the frontdoor PIR state this way)