-
Hello all, I would like to be able to configure the recording options of my unifi cameras via node-red. Is this possible? And if so, can anyone give me a hint/tip on how to configure this? Thx! |
Beta Was this translation helpful? Give feedback.
Answered by
crxporter
Sep 22, 2023
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gil04
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should definitely be possible.
Looking back through our Discord channel - I expect it to be sent as a
PATCH
command from the request node.This is to turn on (or off) the camera LED.
The important parts to change are the Endpoint which will be the same but with your camera ID (can get this from the bootstrap endpoint) and the data.
This will change to never record:
Or always record:
Or record detections only:
I just tested one of my cams and this works immediately to change the setting between always / never / detections only. Individual camera setting cha…