Quick view of camera from notification?

I have a camera with motion detection. I also have a Slack bot as well as phone push notifications. Is there a way to make it so that when motion is detected, I can send some shortcut to myself to view the camera live?

There is actionable notifications with Mobile app (iOS in particular, which thumbnail can be added).
I believe you could do this via Slack as well.
A common thing is people send screenshot for garage or door openings or doorbell cam to notification with actions. If you want a live feed that would just have to be one of the actions, however typically just clicking the notification will launch the app (albeit to the dashboard and not directly to the cam feed)

1 Like

Hm. I can’t actually view my live feed in the android app, which severely limits that.

i send notifications via this function node in node red - should work as well with automation=)

{
    "title": "YOUR_TITLE",
    "message": "YOUR_TEXT",
    "data": {
        "attachment": {
            "content-type": "jpeg"
        },
        "push": {
            "category": "camera"
        },
        "entity_id": "camera.YOUR_CAMERA"
    }
}