From 134e21d010d9172229c39526d05a3a3e77f56347 Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Sun, 11 Oct 2020 15:05:11 +0200 Subject: [PATCH] Permit joining on specific device. https://github.com/Koenkk/zigbee2mqtt/issues/3281 --- docs/information/mqtt_topics_and_message_structure.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/information/mqtt_topics_and_message_structure.md b/docs/information/mqtt_topics_and_message_structure.md index 86a11de7dcd21..11e4177dce812 100755 --- a/docs/information/mqtt_topics_and_message_structure.md +++ b/docs/information/mqtt_topics_and_message_structure.md @@ -343,6 +343,8 @@ Optionally, a `transaction` property can be included in the request. This allows 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"}`.