From ab5ef428052ccb917d551bedd5cb311850723e36 Mon Sep 17 00:00:00 2001 From: krazos Date: Mon, 3 Oct 2022 08:17:53 -0400 Subject: [PATCH] Update RESTful binary sensor docs to note unique_id support (#24311) --- source/_integrations/binary_sensor.rest.markdown | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/_integrations/binary_sensor.rest.markdown b/source/_integrations/binary_sensor.rest.markdown index 6e74ad12d7d..bb03c7c15b5 100644 --- a/source/_integrations/binary_sensor.rest.markdown +++ b/source/_integrations/binary_sensor.rest.markdown @@ -58,7 +58,7 @@ or a template based request: ```yaml # Example configuration.yaml entry -sensor: +binary_sensor: - platform: rest resource_template: "http://IP_ADDRESS/{{ now().strftime('%Y-%m-%d') }}" ``` @@ -99,6 +99,10 @@ payload: description: The payload to send with a POST request. Usually formed as a dictionary. required: false type: string +unique_id: + description: An ID that uniquely identifies this entity. This allows changing the `name`, `icon` and `entity_id` from the web interface. + required: false + type: string verify_ssl: description: Verify the certification of the endpoint. required: false