I’m looking for a way to rename zigbee devices during join.
Found this on the zigbee2mqtt site…
zigbee2mqtt/bridge/request/permit_join
Allows to permit or disable joining of new devices. Allowed payloads are {"value": true}
, {"value": false}
, true
or false
. Example response: {"data":{"value":true},"status":"ok"}
. This is not persistent (will not be saved to configuration.yaml
).
To allow joining via a specific device set the friendly_name
in the device
property. E.g. {"value": true, "device": "my_bulb"}
.
To allow joining for only a specific amount of time add the time
property (in seconds). E.g. {"value": true, "time": 20}
(will allow joining for 20 seconds).
Of particular interest to me is this section…
To allow joining via a specific device set the friendly_name
in the device
property. E.g. {"value": true, "device": "my_bulb"}
.
Is the “device”: “my_bulb” saying that you can pass the name when calling the permit_join endpoint?