<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Andrew Lencmanis</title>
    <description>The latest articles on DEV Community by Andrew Lencmanis (@andrew_lencmanis_12ca3b2b).</description>
    <link>https://dev.to/andrew_lencmanis_12ca3b2b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3923724%2F52bb7258-af82-470e-9065-1032b191d9f9.png</url>
      <title>DEV Community: Andrew Lencmanis</title>
      <link>https://dev.to/andrew_lencmanis_12ca3b2b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/andrew_lencmanis_12ca3b2b"/>
    <language>en</language>
    <item>
      <title>How to Send Webhooks to Google Sheets with FastHook</title>
      <dc:creator>Andrew Lencmanis</dc:creator>
      <pubDate>Wed, 08 Jul 2026 15:07:32 +0000</pubDate>
      <link>https://dev.to/andrew_lencmanis_12ca3b2b/google-sheet-destination-guidelines-3dah</link>
      <guid>https://dev.to/andrew_lencmanis_12ca3b2b/google-sheet-destination-guidelines-3dah</guid>
      <description>&lt;p&gt;FastHook supports Google Sheets as a first-class destination type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;GOOGLE_SHEET
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Do not treat it as an HTTP destination, and do not add spelling aliases such as&lt;br&gt;
&lt;code&gt;GOOGLE_SHEETS&lt;/code&gt;, &lt;code&gt;GOOGLESHEET&lt;/code&gt;, or typo-based normalization. The database&lt;br&gt;
constraint, API contract, dashboard UI, and workers should use the exact&lt;br&gt;
&lt;code&gt;GOOGLE_SHEET&lt;/code&gt; value.&lt;/p&gt;
&lt;h2&gt;
  
  
  Backend Contract
&lt;/h2&gt;

&lt;p&gt;Supported destination types are:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;HTTP | CLI | MOCK_API | GOOGLE_SHEET
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For &lt;code&gt;GOOGLE_SHEET&lt;/code&gt;, the destination config is sheet-specific and does not&lt;br&gt;
require &lt;code&gt;config.url&lt;/code&gt; or &lt;code&gt;config.path&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Required config:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;spreadsheet_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;auth_type&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;auth&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supported auth types:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;GOOGLE_OAUTH_REFRESH_TOKEN&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;GOOGLE_SERVICE_ACCOUNT&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;OAuth config:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;auth.client_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;auth.client_secret&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;auth.refresh_token&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Service account config:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;auth.client_email&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;auth.private_key&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When using a service account, the target spreadsheet must be shared with&lt;br&gt;
&lt;code&gt;auth.client_email&lt;/code&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Sheet Targeting
&lt;/h2&gt;

&lt;p&gt;Use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;sheet_name&lt;/code&gt;, default &lt;code&gt;Sheet1&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;range&lt;/code&gt;, default &lt;code&gt;&amp;lt;sheet_name&amp;gt;!A:Z&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The dashboard must not ask users to type &lt;code&gt;range&lt;/code&gt;. It should derive the value&lt;br&gt;
from &lt;code&gt;sheet_name&lt;/code&gt; and save &lt;code&gt;&amp;lt;sheet_name&amp;gt;!A:Z&lt;/code&gt;. API callers may omit &lt;code&gt;range&lt;/code&gt;;&lt;br&gt;
the backend normalizes it from &lt;code&gt;sheet_name&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Simple Unicode sheet names do not need quotes, so &lt;code&gt;Лист1&lt;/code&gt; should become&lt;br&gt;
&lt;code&gt;Лист1!A:Z&lt;/code&gt;. When the sheet name contains spaces or A1 notation punctuation,&lt;br&gt;
quote the sheet name:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;'Orders Archive'!A:Z
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Row Layout
&lt;/h2&gt;

&lt;p&gt;Google Sheet delivery writes delivered events through the Google Sheets&lt;br&gt;
&lt;code&gt;values.append&lt;/code&gt; API.&lt;/p&gt;

&lt;p&gt;Row layout rules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If &lt;code&gt;columns&lt;/code&gt; is set, write those dotted payload/metadata paths in that exact
order.&lt;/li&gt;
&lt;li&gt;If &lt;code&gt;columns&lt;/code&gt; is empty and &lt;code&gt;include_metadata&lt;/code&gt; is &lt;code&gt;true&lt;/code&gt;, write FastHook
metadata columns plus a payload snapshot.&lt;/li&gt;
&lt;li&gt;If &lt;code&gt;columns&lt;/code&gt; is empty and &lt;code&gt;include_metadata&lt;/code&gt; is &lt;code&gt;false&lt;/code&gt;, auto-flatten the
payload and spread payload values across columns.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supported metadata paths include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;delivered_at&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;event_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;request_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;connection_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;event_data_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;team_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;source_id&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;destination_id&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Payload paths can be written with or without the &lt;code&gt;payload.&lt;/code&gt; prefix:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;payload.customer.email
customer.email
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Dashboard UI Rules
&lt;/h2&gt;

&lt;p&gt;The dashboard should expose one destination editor shared by the Destinations&lt;br&gt;
page and the Connections/Flow editor.&lt;/p&gt;

&lt;p&gt;For Google Sheet destinations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Show &lt;code&gt;Spreadsheet ID&lt;/code&gt;, &lt;code&gt;Sheet name&lt;/code&gt;, &lt;code&gt;Payload fields&lt;/code&gt;, &lt;code&gt;Value input&lt;/code&gt;,
&lt;code&gt;Include metadata&lt;/code&gt;, and &lt;code&gt;Google auth&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Do not show &lt;code&gt;Range&lt;/code&gt;; build it automatically from &lt;code&gt;Sheet name&lt;/code&gt; as
&lt;code&gt;&amp;lt;sheet_name&amp;gt;!A:Z&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Support both &lt;code&gt;OAuth2 login&lt;/code&gt; and &lt;code&gt;Service account&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Hide the insert mode selector. The UI should save &lt;code&gt;insert_data_option&lt;/code&gt; as
&lt;code&gt;INSERT_ROWS&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Keep &lt;code&gt;Max delivery rate&lt;/code&gt; enabled for Google Sheet destinations. Google
Sheets API write quota is 60 requests/minute per user/project, so fix the UI
at &lt;code&gt;1/second&lt;/code&gt; to avoid burst writes.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Payload fields&lt;/code&gt; disables &lt;code&gt;Include metadata&lt;/code&gt;, because explicit fields define
the row layout.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Include metadata&lt;/code&gt; disables &lt;code&gt;Value input&lt;/code&gt;, because metadata rows should be
written as &lt;code&gt;RAW&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;If &lt;code&gt;Include metadata&lt;/code&gt; is disabled and &lt;code&gt;Payload fields&lt;/code&gt; is empty, payload data
is auto-spread across columns.&lt;/li&gt;
&lt;li&gt;Keep &lt;code&gt;Max delivery rate&lt;/code&gt; as the shared destination rate-limit control:
enabled toggle, numeric value, and &lt;code&gt;second | minute | hour&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Operational Notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Google Sheets API must be enabled in the Google Cloud project used by the
OAuth client or service account.&lt;/li&gt;
&lt;li&gt;Google Sheets API write quota is 300 requests/minute per project and 60
requests/minute per user/project. Treat one Google Sheet destination as a
single user/account quota and default rate limiting to &lt;code&gt;1/second&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;OAuth2 login requires the dashboard OAuth token exchange route and the public
Google client id to be configured.&lt;/li&gt;
&lt;li&gt;After changing a destination config in production, clear the destination config
cache if the send worker reads cached destination records.&lt;/li&gt;
&lt;li&gt;A failed Google Sheets delivery should be debugged from the event/attempt
status first, then by checking auth, spreadsheet sharing, sheet name, and payload
field mapping.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webhooks</category>
      <category>googlesheets</category>
      <category>automation</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Building a Replay-Safe Webhook Event Gateway</title>
      <dc:creator>Andrew Lencmanis</dc:creator>
      <pubDate>Sun, 10 May 2026 19:35:23 +0000</pubDate>
      <link>https://dev.to/andrew_lencmanis_12ca3b2b/building-a-replay-safe-webhook-event-gateway-4lln</link>
      <guid>https://dev.to/andrew_lencmanis_12ca3b2b/building-a-replay-safe-webhook-event-gateway-4lln</guid>
      <description>&lt;p&gt;Webhooks look simple at first: receive an HTTP request, forward it somewhere, return 200 OK.&lt;/p&gt;

&lt;p&gt;That simplicity disappears the moment the system becomes production-critical. Providers retry. Consumers fail. Payloads arrive twice. Teams need to debug what happened yesterday. A single endpoint becomes dozens of integrations, each with its own routing, retry, transformation, and observability needs.&lt;/p&gt;

&lt;p&gt;At that point, webhooks stop being “just HTTP callbacks” and become an event gateway problem.&lt;/p&gt;

&lt;p&gt;This is the layer FastHook is built around: receive webhook requests, route them through connections, deliver events to destinations, and make every step inspectable and retryable.&lt;/p&gt;

&lt;p&gt;The Core Model&lt;br&gt;
A useful webhook gateway needs clear internal concepts.&lt;/p&gt;

&lt;p&gt;In FastHook, a source is where inbound webhooks arrive. It represents the public endpoint that providers send requests to.&lt;/p&gt;

&lt;p&gt;A destination is where routed events are delivered. For example, an internal API endpoint, a worker, or another HTTP service.&lt;/p&gt;

&lt;p&gt;A connection links one source to one destination. This is where delivery behavior lives: filtering, transformation, retry, delay, and deduplication rules.&lt;/p&gt;

&lt;p&gt;A request is the inbound webhook received by FastHook. It contains the original payload and request metadata.&lt;/p&gt;

&lt;p&gt;An event is the outbound delivery created from an accepted request and a matching connection. Events can be queued, processed, delivered, failed, or ignored.&lt;/p&gt;

&lt;p&gt;That separation matters. If a provider sends one webhook request and it matches several routing paths in the future, you want to inspect the original request separately from each delivery attempt. Even with one source-to-destination connection, keeping request and event separate makes retries, debugging, and metrics much cleaner.&lt;/p&gt;

&lt;p&gt;Why Replay Safety Matters&lt;br&gt;
Retries are not optional in webhook systems. They are the normal path.&lt;/p&gt;

&lt;p&gt;A destination can return 500. A network request can timeout. A deploy can briefly break an endpoint. If the only recovery path is “ask the provider to resend it,” your system is fragile.&lt;/p&gt;

&lt;p&gt;A replay-safe gateway stores enough information to retry later without losing context.&lt;/p&gt;

&lt;p&gt;FastHook exposes this at two levels:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="s2"&gt;"https://api.fasthook.io/v1/requests/req_.../retry"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-team-id: tm_..."&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Request retry replays an inbound request through routing again.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="s2"&gt;"https://api.fasthook.io/v1/events/evt_.../retry"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-team-id: tm_..."&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Event retry retries a specific delivery event.&lt;/p&gt;

&lt;p&gt;Those two operations solve different problems. If routing or connection rules changed, retrying the request can create fresh routed events. If only one destination delivery failed, retrying the event is more precise.&lt;/p&gt;

&lt;p&gt;Bulk Retry Is Where Operations Become Real&lt;br&gt;
Manual retry is useful. Bulk retry is where the system becomes operationally useful.&lt;/p&gt;

&lt;p&gt;Imagine a destination was down for 30 minutes. You do not want to click retry 800 times. You want to filter failed events by time range, source, status, or search term, then create a controlled bulk operation.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="s2"&gt;"https://api.fasthook.io/v1/events/bulk_operations"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-team-id: tm_..."&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{
    "from": "2026-04-17T00:00:00.000Z",
    "to": "2026-04-17T23:59:59.999Z",
    "status": "failed",
    "source_id": "src_...",
    "q": "stripe"
  }'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The important part is that replay is filtered and tracked as an operation, not treated as an invisible background action.&lt;/p&gt;

&lt;p&gt;Observability Starts With Count APIs&lt;br&gt;
Before retrying, teams usually ask: how many objects match this filter?&lt;/p&gt;

&lt;p&gt;FastHook supports count endpoints for requests and events:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="s2"&gt;"https://api.fasthook.io/v1/events/count?from=2026-04-17T00%3A00%3A00.000Z&amp;amp;to=2026-04-17T23%3A59%3A59.999Z&amp;amp;status=failed&amp;amp;source_id=src_..."&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer &lt;/span&gt;&lt;span class="nv"&gt;$API_KEY&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-team-id: tm_..."&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A typical response includes both the exact total and the applied time range:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"total"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1234&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"count"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1234&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"total_exact"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"applied_range"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"from"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2026-04-17T00:00:00.000Z"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"to"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2026-04-17T23:59:59.999Z"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That sounds small, but it changes the workflow. Operators can estimate blast radius before starting a replay.&lt;/p&gt;

&lt;p&gt;Routing Rules Belong On Connections&lt;br&gt;
Webhook providers usually send too much data to too few endpoints. A gateway needs routing rules between ingress and delivery.&lt;/p&gt;

&lt;p&gt;FastHook connection rules can cover common operational needs:&lt;/p&gt;

&lt;p&gt;filter rules decide whether a request should become an event for a connection.&lt;br&gt;
transform rules modify payloads before delivery.&lt;br&gt;
retry rules control retry behavior.&lt;br&gt;
delay rules postpone delivery.&lt;br&gt;
deduplicate rules help ignore duplicate deliveries inside a configured window.&lt;br&gt;
This keeps source endpoints stable while letting each destination have its own behavior.&lt;/p&gt;

&lt;p&gt;Transformations Need Their Own Audit Trail&lt;br&gt;
Transformations are powerful, but they can also hide bugs. If a payload changes before delivery, teams need to know what ran and what came out.&lt;/p&gt;

&lt;p&gt;A webhook gateway should treat transformation execution as inspectable data, not just inline code.&lt;/p&gt;

&lt;p&gt;FastHook exposes transformation resources and execution history through the API, so teams can list transformations, run tests, and inspect executions tied to delivery behavior.&lt;/p&gt;

&lt;p&gt;What To Avoid&lt;br&gt;
The biggest mistake in webhook infrastructure is treating delivery as a single HTTP forward.&lt;/p&gt;

&lt;p&gt;That loses the real story.&lt;/p&gt;

&lt;p&gt;A production webhook gateway should not only answer “did we receive it?” It should answer:&lt;/p&gt;

&lt;p&gt;Was the inbound request accepted or rejected?&lt;br&gt;
Which connection matched it?&lt;br&gt;
Which event was created?&lt;br&gt;
Was the event delivered, failed, ignored, or retried?&lt;br&gt;
What was the destination response?&lt;br&gt;
Can we replay one event safely?&lt;br&gt;
Can we bulk retry a filtered set?&lt;br&gt;
Can we count the impact before doing it?&lt;br&gt;
Once teams have those answers, webhook debugging stops being guesswork.&lt;/p&gt;

&lt;p&gt;Closing&lt;br&gt;
Webhooks are often the first integration surface a product exposes, but they are rarely treated as infrastructure until something breaks.&lt;/p&gt;

&lt;p&gt;A replay-safe, observable event gateway gives teams a better foundation: stable source URLs, explicit routing, destination delivery tracking, retries, bulk operations, transformations, deduplication, and metrics.&lt;/p&gt;

&lt;p&gt;That is the direction we are building with FastHook: not just receiving webhooks, but making webhook delivery understandable, recoverable, and safe to operate.&lt;/p&gt;

&lt;p&gt;If you are building webhook infrastructure and want this as a managed product, FastHook is available at &lt;a href="https://www.fasthook.io" rel="noopener noreferrer"&gt;https://www.fasthook.io&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>api</category>
      <category>architecture</category>
      <category>backend</category>
      <category>systemdesign</category>
    </item>
  </channel>
</rss>
