Connectors

Contact support

Incoming webhooks

Process incoming webhooks in batch

You can accept and process incoming webhook events, coming from external systems. Go into Peliqan Settings to find your personal incoming webhook URL:

image

Any payload posted to your webhook endpoint, will be stored in a new schema “webhooks” and table “incoming_webhooks” in your Peliqan data warehouse:

image
The maximum size of an incoming payload is 16MB !

You can write a low-code Python script in Peliqan to process these incoming webhooks. Typically you will add a column “Status” that is updated from your script, to keep track if which webhook events were processed.

Process incoming webhooks in real-time

You can create an API endpoint to capture incoming webhook events in real-time. More info:

Publish APIs