#Webhook automation issue

1 messages · Page 1 of 1 (latest)

wheat otter
#

Not sure if this is an automation issue or a cloud issue. I have created a webhook automation to turn on a light when. I made sure to uncheck the "only accessible from local network" . When I go to settings -> Home Assistant Cloud and scroll down to webhooks I can see my automation listed with a slider beside it. When i slide it to enable nothing happens. I would expect the page to refresh and a Manage button show up. I f I refresh the page manually or navigate off the page when I come back the slider is off again. Nothing in the logs. I have tried restarting, re-creating the automation, signing out/in into Nabu Casa. Nothing sees to work. I am able to access my Home Assistant instance remotely so I believe Nabu Casa is working... Any suggestions?

mystic quail
#

I suspect / understand the slider is to enable the webhook through Nabu Casa Cloud. Not triggering the webhook.

If it's a GET Webhook, you should be able to trigger by going to the URL in a web browser. If you have it setup with a different request type like POST, you would be better off with a tool like Postman to test your webhooks.

fading pelican
#

I am having the exact same experience, unable to enable a webhook. Slider shuts off when you navigate away from the page.

alias: OMi
description: ""
triggers:
  - trigger: webhook
    allowed_methods:
      - POST
      - PUT
    local_only: false
    webhook_id: ****omitted****
conditions: []
actions:
  - action: persistent_notification.create
    metadata: {}
    data:
      message: |
        {{ trigger.json.segments[0].text }}
      title: From device
mode: single