I have a doorbell and I’m using the actual binding from milestone OH3.3M6.
I configured the webhook part and partially it works.
But the following channels are not updated:
sub-event#type -> only value "Motion detected by Outdoor Camera" seen
sub-event#message -> remains empty
sub-event#snapshot -> remains UNDEF
sub-event#snapshot-url -> remains NULL
sub-event#vignette -> remains UNDEF
sub-event#vignette-url -> remains NULL
Here are the JSON’s from the events which are written to openhab.log when loglevel is set to DEBUG.
incoming call:
{
"user_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"event_type": "incoming_call",
"device_id": "xx:xx:xx:xx:xx:xx",
"home_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"home_name": "Mein Haus",
"camera_id": "xx:xx:xx:xx:xx:xx",
"event_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"subevent_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"snapshot_url": "https://netatmocameraimage.blob.core.windows.net/production/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"vignette_url": "https://netatmocameraimage.blob.core.windows.net/production/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"session_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"push_type": "NDB-incoming_call"
}
motion detected:
{
"user_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"snapshot_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"snapshot_key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"snapshot_url": "https://netatmocameraimage.blob.core.windows.net/production/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"vignette_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"vignette_key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"vignette_url": "https://netatmocameraimage.blob.core.windows.net/production/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"event_type": "human",
"camera_id": "xx:xx:xx:xx:xx:xx",
"device_id": "xx:xx:xx:xx:xx:xx",
"home_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"home_name": "Mein Haus",
"event_id": "xxxxxxxxxxxxxxxxxxxxxxxx",
"subevent_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"message": "Person erfasst",
"push_type": "NDB-human"
}
I have also a direct webhook via the http binding installed, and there I get all the values from the webhook push notification.
Anyone else having this issue with the netatmo binding ?