From 2e21aca4d7d77a2f534012263413ec66cd396019 Mon Sep 17 00:00:00 2001 From: Alex Bair Date: Fri, 8 Nov 2024 15:42:30 -0500 Subject: [PATCH] docs: update materialize-webhook config options --- .../materialization-connectors/http-webhook.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/site/docs/reference/Connectors/materialization-connectors/http-webhook.md b/site/docs/reference/Connectors/materialization-connectors/http-webhook.md index 4f4d29b163..788ae4dbb6 100644 --- a/site/docs/reference/Connectors/materialization-connectors/http-webhook.md +++ b/site/docs/reference/Connectors/materialization-connectors/http-webhook.md @@ -20,8 +20,7 @@ The Webhooks connector is available for use in the Flow web application. To lear | Property | Title | Description | Type | Required/Default | |--------------------|----------------|------------------------------------------|--------|------------------------| | **`/address`** | Address | The URL of the endpoint to send data to. | string | Required | -| **`/method`** | HTTP Method | HTTP method to use (e.g., `POST` or `PUT`). | string | default: `POST` | -| **`/headers`** | Headers | Additional headers to include in the HTTP request. | object | | +| **`/headers/customHeaders`** | Headers | Array of additional headers to include in the HTTP request. | object | | ### Bindings @@ -41,8 +40,10 @@ endpoint: image: ghcr.io/estuary/materialize-webhook:v1 config: address: http://192.168.1.100:3000/ - method: POST headers: - Content-Type: application/json - Authorization: Bearer + customHeaders: + - name: my-header + value: my-value + - name: another-header + value: another-value ```