Skip to main content

Renter Merged

Overview

·Event key:
renter.merged
⚠️
Legacy Webhook - DeprecatedThis webhook is part of the legacy webhook system. For new integrations, we recommend using the modern webhooks v2 system.

Webhook triggered when a one renter is merged into another.

When this event fires

This event fires when a renter is merged into another, leaving the former, effectively, deleted — for example, when an agent fires off a Merge call on a renter, due to similar names, phone, email, etc.,

Event Payload

Example payloadJSON200 · application/json
{
  "event": "renter.merged",
  "data": {
    "funnel_renter_id": 456678,
    "deleted_funnel_renter_id": 432123,
    "merged_at": "2026-08-25T17:47:21.081471",
    "funnel_community_id": 1234
  }
}

What counts as a successful delivery: Funnel treats any 2xx HTTP status code as success — it does not check the response body at all, so returning any content (or none) with a 2xx status is sufficient. If your endpoint returns a non-2xx status or is unreachable, Funnel retries the delivery up to 2 more times (3 attempts total), waiting roughly 60 seconds and then 120 seconds before each retry, so your handler must be idempotent.

Migration to Webhooks v2

This legacy webhook is deprecated. For new integrations, we recommend using the modern webhooks v2 system, which provides:

  • Better event structure with consistent formatting
  • More granular events for different activities
  • A dedicated delivery pipeline — see the Webhooks Walkthrough for what's documented about its delivery behavior
  • Enhanced security features