-
Could also be in a question for the node-red package. But maybe the Integration API is the limit here. I had success with creating dynamic entities with But I would like to set the Is it possible to specifically set the firendly_name in I tried already with updating |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The first time you register an entity using You could do back-to-back API calls to |
Beta Was this translation helpful? Give feedback.
-
thank you so much, it worked. |
Beta Was this translation helpful? Give feedback.
The first time you register an entity using
nodered/discovery
it uses the name field to create anentity_id
based on the name field or a combination of theserver_id
andnode_id
. Any updates sent tonodered/discovery
using the sameserver_id
andnode_id
will only change the name field and not theentity_id
.You could do back-to-back API calls to
nodered/discovery
with the second one containing the German name in the name property. Not the best solution but should work for what you're trying to do.