> For the complete documentation index, see [llms.txt](https://docs.klink.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.klink.cloud/integrations/webhook-integration-guide/google-chat-notification-setup.md).

# Google Chat Notification Setup

Get real-time notifications from klink.cloud in your Google Chat space.

### Prerequisites

* Google Chat workspace access
* N8N, Zapier, or Make.com account
* klink.cloud Developer App access

### Step 1: Create Google Chat Webhook

1. Open Google Chat and navigate to your desired space
2. Click the space name → **Settings** → **Webhooks**
3. Click **Add webhook**
4. Enter a name (e.g., "klink.cloud Notifications")
5. Click **Save** and copy the webhook URL

<figure><img src="https://420146782-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FqqwHJh6YA4uvzfFRLnoR%2Fuploads%2FCjB54o3QD4SY22Er7AQV%2Fimage.png?alt=media&amp;token=7a5992fe-c7e7-47fe-aa15-500f2fb37dc0" alt=""><figcaption></figcaption></figure>

### Step 2: Enable klink.cloud Inbound Webhook

1. Log in to [klink.cloud](https://klink.cloud)
2. Go to **Settings** → **Developer App**
3. Enable **Inbound Message Webhook**
4. Enter your webhook URL in Event notification endpoint URL

<figure><img src="https://420146782-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FqqwHJh6YA4uvzfFRLnoR%2Fuploads%2Fa1uzxZGfPFrwcc9B2khd%2Fimage.png?alt=media&amp;token=6396de4d-f20a-4d40-8fbd-453f4f8bc5dc" alt=""><figcaption></figcaption></figure>

### Step 3: Setup Automation (N8N Example)

#### Create Workflow:

1. **Webhook Trigger Node**
   * Method: POST
   * Path: /klink-notifications
   * Paste this as your klink.cloud Inbound Webhook URL
2. **HTTP Request Node**
   * Method: POST
   * URL: \[Your Google Chat webhook URL from Step 1]
   * Body Content Type: JSON
   * Body:

json

```json
   {
     "text": "New message from klink.cloud:\n{{ $json.message }}"
   }
```

3. Activate the workflow

### Message Customization

Customize your notification format:

json

```json
{
  "text": "📧 *New klink.cloud Notification*\nFrom: {{ $json.customer_name }}\nMessage: {{ $json.message }}\nChannel: {{ $json.channel }}"
}
```

### Using Zapier or Make.com

Same concept applies:

* **Trigger:** Webhook (use your klink.cloud webhook URL)
* **Action:** HTTP Request to Google Chat webhook URL with JSON body

***

**Need help?** Contact klink.cloud support via Live Chat or <support@klink.cloud>&#x20;
