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:

Screenshot 2024-01-18 at 15.55.17.png

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

Screenshot 2024-01-18 at 16.01.40.png

<aside> ☝ The maximum size of an incoming payload is 16MB !

</aside>

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