From 052b4d55a3643827612a9ba9a087524670f1e22b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 19 Jan 2023 13:59:19 -0500 Subject: [PATCH] Document the mobile app webhook for conversation (#1637) --- .../native-app-integration/sending-data.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/api/native-app-integration/sending-data.md b/docs/api/native-app-integration/sending-data.md index 55e7f156..7cc301fa 100644 --- a/docs/api/native-app-integration/sending-data.md +++ b/docs/api/native-app-integration/sending-data.md @@ -319,3 +319,22 @@ The response will include paths for streaming either via HLS or via MJPEG image ``` If HLS streaming is not available, the `hls_path` will be `null`. See notes above on instance URL for how to construct a full URL. + +## Process Conversation + +_This requires Home Assistant 2023.2.0 or later._ + +Process a sentence with the conversation integration. + +```json +{ + "type": "process_conversation", + "data": { + "text": "Turn on the lights", + "language": "en", + "conversation_id": "ABCD", + } +} +``` + +For available keys and response, see the [conversation API documentation](../../intent_conversation_api).