> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keephq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Chat

> Google Chat provider is a provider that allows to send messages to Google Chat

## Authentication

This provider requires authentication.

* **webhook\_url**: Google Chat Webhook Url (required: True, sensitive: True)

## In workflows

This provider can be used in workflows.

As "action" to make changes or update data, example:

```yaml theme={null}
actions:
    - name: Query google_chat
      provider: google_chat
      config: "{{ provider.my_provider_name }}"
      with:
        message: {value}  # The text message to send.
```

If you need workflow examples with this provider, please raise a [GitHub issue](https://github.com/keephq/keep/issues).

## Connecting with the Provider

1. Open Google Chat
2. Open the space to which you want to add a webhook
3. Next to the space title, click the expand more arrow, and then click "Apps & Integrations"
4. Click "+ Add webhooks"
5. In the Name field, enter "Quickstart Webhook"
6. In the Avatar URL field, enter [https://developers.google.com/chat/images/chat-product-icon.png](https://developers.google.com/chat/images/chat-product-icon.png)
7. Click Save
8. To copy the webhook URL, click "More", and then click "Copy link".

## Useful Links

* [https://developers.google.com/chat/how-tos/webhooks](https://developers.google.com/chat/how-tos/webhooks)
