I have a Blurams doorbell that is IFTTT compatible so I am trying to get IFTTT to trigger an action in HomeAssistant, but for some reason it just isn’t working.
The thing that IFTTT is configured to trigger is a Webhook, with the following entries :-
- URL : https://REDACTED.duckdns.org:8123/api/webhook/4da9…7f29c
- Method : POST
- Content Type : application/json
- Body : { “action”: “call_service”, “service”: “light.turn_on”, “entity_id”: “light.WLED_Test” }
The corresponding automation yaml is as follows :-
- id: '1616344541032'
alias: IFTTT Doorbell Ring
description: ''
trigger:
- event_data:
action: call_service
event_type: ifttt_webhook_received
platform: event
condition: []
action:
- target:
entity_id: '{{ trigger.event.data.entity_id }}'
service: '{{ trigger.event.data.service }}'
mode: single
I can see from IFTTT that it is being triggered each time I press the doorbell but the automation in HA is not being triggered.
Any suggestions as to where I might be going wrong?