Webhooks

How to manage your webhooks in Woodpecker API

Weronika Wróblewska avatar
Written by Weronika Wróblewska
Updated over a week ago

IN THIS ARTICLE:


Introduction to Woodpecker webhooks

Webhooks notify you about every event related to prospects. Depends on which webhook you subscribe to, you'll get information each time a desired event happens.

Using webhooks requires API keys & integrations add-on. Click here to learn how to get it on Marketplace.

IMPORTANT: All webhooks work under the API 1.0. A detailed information how to subscribe to webhooks and what type of events you can track is here. API 2.0 at this point allows you to check which webhooks you subscribed to from your Woodpecker account.


GET webhooks

To get a list of all webhooks use the following request:

GET /rest/v2/webhooks

Sample response:

{
"webhooks": [
{
"target_url": "https://myurl.com/woodpeckerwebhooks",
"event": "EMAIL_OPENED"
},
{
"target_url": "https://myurl.com/woodpeckerwebhooks",
"event": "PROSPECT_BLACKLISTED"
},
{
"target_url": "https://myurl.com/woodpeckerwebhooks",
"event": "PROSPECT_INTERESTED"
}
]

Response data type:

  • webhooks - JSON object, list of all webhooks you subscribed to.

  • target_url - string, target URL used to receive notifications.

  • event - string, name of the event you subscribed to.

Note:

  • Webhooks are aggregated by firm ID. It means, you will receive information about every webhook you or your teammates added to the same Woodpecker account subscribed to.


Rate limits

You can subscribe to the same event up to three times per one account. If you reach the limit, you'll get the following error message:

You can only subscribe to the same webhook 3 times per one account.

Want to integrate with us?

If you're interested in building a native integration with Woodpecker, fill out this form and we'll get back to you.

Did this answer your question?