Skip to main content
The Webhook Target Connector delivers data from Popsink to any HTTP endpoint via webhook. It is the most efficient way to build a direct integration between Popsink and a downstream service: select existing streams from your Popsink catalog, and each event is forwarded as an HTTP request to your configured URL.

Key Features

  • Push delivery: events are forwarded to your endpoint as they flow through the pipeline — no polling required.
  • Flexible authentication: token sent as a Bearer header or as a URL query parameter.
  • Configurable method: deliver events with POST (payload in the body, recommended) or GET.

Prerequisites

  • An HTTP(S) endpoint reachable from Popsink that accepts incoming requests.

Configuration

FieldRequiredDescription
HostYesTarget webhook URL (e.g. https://api.myservice.com/events)
TokenNoAuthentication token, sent according to the authentication type
Authentication TypeYesBEARER (default) or URL — see below
Request MethodYesPOST (default, recommended) or GET

Authentication Types

TypeDescription
BEARERToken sent in the Authorization: Bearer <token> header
URLToken sent as a ?token=<token> query parameter

Request Methods

MethodDescription
POSTEvent payload sent in the request body — recommended
GETRequest sent without a body