Creating your first webhook
In order to test webhooks deliveries locally, you can use Webhook.site or RequestBin. They are free tools that allow you to inspect the webhook payloads and responses. We’ll use Webhook.site in this guide.1
Prepare to receive webhook deliveries
Go to https://webhook.site/ and copy the webhook URL.

2
Create a new webhook
Create via workspace settings page
Create via workspace settings page
Go to your workspace API settings page and create a new webhook. Fill in the following fields:
- Name: choose any name you want for your webhook
- URL: use the webhook URL you copied from webhook.site
-
Events: use
person.created -
Click on “Create webhook”

Create via API
Create via API
Paste the following command in your terminal to create a new webhook via the API.
Remember to replace
YOUR_API_KEY with your API key, and <webhook-url> with the webhook URL you copied from webhook.site.3
Trigger a delivery event
Go to your workspace and create a new person in any of your groups.

4
Now go back to webhook.site and you should see a request in the webhook deliveries.
