diff --git a/Notify_googlechat.md b/Notify_googlechat.md index ca4891a..1809534 100644 --- a/Notify_googlechat.md +++ b/Notify_googlechat.md @@ -36,6 +36,7 @@ Valid syntax is as follows: | workspace | Yes | The workspace associated with your Google Chat account. | webhook_key | Yes | The webhook key associated with your Google Chat account. | webhook_token | Yes | The webhook token associated with your Google Chat account. +| thread | No | You can optionally specify a `ThreadKey` on the URL to focus it's notifications there. #### Example Send a Google Chat notification @@ -57,4 +58,15 @@ Send a Google Chat notification apprise -vv -t "Test Message Title" -b "Test Message Body" \ https://chat.googleapis.com/v1/spaces/AAAAkM/messages?key=AIzaSSjMm-WEfqKqqsHI&token=O7bnyri_WEXKcyFk%3D -``` \ No newline at end of file +``` + +Want to target a specific threadKey? Just do the following: +```bash +# Assuming our {workspace} is AAAAkM +# Assuming our {webhook_key} is AIzaSSjMm-WEfqKqqsHI +# Assuming our {webhook_token} is O7bnyri_WEXKcyFk%3D +# Assuming our {threadkey} is ABC + +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + gchat://AAAAkM/AIzaSSjMm-WEfqKqqsHI/O7bnyri_WEXKcyFk%3D/?thread=ABC +```