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

# Webhooks

> Google sheets incoming webhooks: event paths, payloads, and response data.

The Google sheets plugin handles incoming webhooks. Point your provider’s subscription URL at your Corsair HTTP handler (see [Overview](/plugins/googlesheets/overview) for setup context and the exact URL shape).

<Info>
  **New to Corsair?** See [webhooks](/concepts/webhooks) and [hooks](/concepts/hooks).
</Info>

## Webhook map

* `rangeUpdated` (`rangeUpdated`)

## HTTP handler setup

```ts app/api/webhook/route.ts theme={null}
import { processWebhook } from "corsair";
import { corsair } from "@/server/corsair";

export async function POST(request: Request) {
    const headers = Object.fromEntries(request.headers);
    const body = await request.json();
    const result = await processWebhook(corsair, headers, body);
    return result.response;
}
```

## Events

## Range Updated

### Range Updated

`rangeUpdated`

A range of cells in a Google Sheet was updated

**Payload**

| Name            | Type                                      | Required | Description |
| --------------- | ----------------------------------------- | -------- | ----------- |
| `spreadsheetId` | `string`                                  | No       | —           |
| `sheetName`     | `string`                                  | No       | —           |
| `range`         | `string`                                  | No       | —           |
| `values`        | `(string \| number \| boolean \| null)[]` | No       | —           |
| `eventType`     | `rangeUpdated`                            | No       | —           |
| `timestamp`     | `string`                                  | No       | —           |
| `event`         | `any`                                     | No       | —           |

<AccordionGroup>
  <Accordion title="Response data full type">
    ```ts theme={null}
    {
      eventType: rangeUpdated,
      spreadsheetId: string,
      sheetName: string,
      range: string,
      values: (
        string | number | boolean | null
      )[],
      timestamp: string
    }
    ```
  </Accordion>
</AccordionGroup>

**`webhookHooks` example**

```ts theme={null}
googlesheets({
    webhookHooks: {
        rangeUpdated: {
            before(ctx, args) {
                return { ctx, args };
            },
            after(ctx, response) {
            },
        },
    },
})
```

***
