Hi
I recently had to restore my Home Assistant setup from version “very old” (0.8-something?) to the newest version since I had forgotten to back up my config and the SD card died… After the restore it seems like everything is working again. Except from my automation webhooks. No matter what I do, I seem to only be getting 404s when trying to hit them. And yes, I do HTTP POSTs
To debug, I removed everything from my automations.yaml
file, and created a simple test one:
- id: '1598992586389'
alias: Test
description: ''
trigger:
- platform: webhook
webhook_id: test
condition: []
action:
- data:
message: test message
title: test subject
service: persistent_notification.create
mode: single
But
curl -d "" http://homeassistant.local:8123/api/webhook/test
Just returns
404: Not Found
There are no suspicious errors in the log file… Well, I’m getting some complaints about Unable to create UPnP/IGD, aborting
, but I’m assuming that is unrelated.
The API in general is alive. If I hit http://homeassistant.local:8123/api/
(with a token) I get:
{'message': 'API running.'}
Allan