Webhook (HTTP call)

Make an HTTP call to any API endpoint when some data events events (e.g. a record is updated).

This field is a full CURL as you know it from the open source project https://curl.se/

You can include any authentication, parameters, turn the POST into a GET request or anything else. The CURL will just get executed as is, we will not run any checks on your behalf. If the API call fails or timeouts, the failure will not stop the execution of other triggers as every trigger will be fired up independently.

We recommend to keep the CURL as a POST request.

The <<record>> placeholder will be replaced by the JSON string of the details of the record. Properties of the record can be accessed by using a period "." to access the property. This can be nested if the property is a JSON.

The payload is also fully customizable. For example, add some additional custom parameters in the JSON body as follows:

curl --request POST \
--url https://your-endpoint-url.com \
--header 'Content-Type: application/json' \
--data '{ "record": "<<record>>", "record_id": "<<record>>.id", "my_custom_param": 1234 }'

Last updated