From 3b56f583a436799b70cbf94fdd1fe864564ee672 Mon Sep 17 00:00:00 2001 From: Andy Castille Date: Fri, 26 Apr 2024 01:13:31 -0700 Subject: [PATCH] Add note about return_response to example of calling a service via the WS API (#2156) --- docs/api/websocket.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api/websocket.md b/docs/api/websocket.md index b060130d..d2595bbf 100644 --- a/docs/api/websocket.md +++ b/docs/api/websocket.md @@ -353,6 +353,8 @@ This will call a service in Home Assistant. Right now there is no return value. "target": { "entity_id": "light.kitchen" } + // Must be included for services that return response data + "return_response": true } ```