In Peliqan you can define and publish API endpoints, in order to share data with partners, customers etc. These API endpoints can also be used to capture incoming webhook events (or you can use the built-in webhook URL for your account).
In Peliqan, go to the Build section, and click the “+” icon when hovering over “API endpoints”:
Add a new endpoint and link it to a Python script of type “API handler”. See below on how to write a low-code Python script to handle the API requests.
Choose the Authorization:
The full URL of your API endpoint is shown on the API endpoint detail screen, as you can see in the above screenshot.
In Peliqan, go to the Build section, and click the “+” icon when hovering over “Apps”. Add a script (app) of type “API endpoint handler”:
The new script will have some boilerplate example code, that shows how you can get the details of the incoming request (such as the body, headers, querystring etc.) and how you can send a response: