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

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

Last updated
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 }'