From e5baab532e35764eb46479d3080d06267de6aff2 Mon Sep 17 00:00:00 2001 From: Ioan Loosley Date: Mon, 1 Oct 2018 15:52:33 +0100 Subject: [PATCH] Made the hangouts documentation go into more detail about the covo id (#6407) --- source/_components/notify.hangouts.markdown | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/source/_components/notify.hangouts.markdown b/source/_components/notify.hangouts.markdown index e1dcdf83e54..3f69c3f5b30 100644 --- a/source/_components/notify.hangouts.markdown +++ b/source/_components/notify.hangouts.markdown @@ -46,7 +46,22 @@ default_conversations: type: string {% endconfiguration %} -The conversations has to be precreated, the conversation id can be obtained from the `hangouts.conversations` entity. Make sure to use quotes around the conversation id or alias to escape special characters (`!`, and `#`) in YAML. +### {% linkable_title Finding the conversation ID %} + +The conversations has to be precreated, the conversation id can be obtained from the `hangouts.conversations` entity, this can be found in with the states developer tool that is shown as this icon in the side bar. Using your web browsers search tool to find the `hangouts.conversations` entity. You will find something like bellow + +``` +0: { + "id": "", + "name": "A simple hangout", + "users": [ + "Steve", + "Jo" + ] +} +``` + +This may have more if the account is in multiple hangout conversations, for configuring the bot to be in a conversation you will need the ID that would be where `` is in that example. Make sure to use quotes around the conversation id or alias to escape special characters (`!`, and `#`) in YAML. To use notifications, please see the [getting started with automation page](/getting-started/automation/).