pipedrive-webhooks

Installation
SKILL.md

Pipedrive Webhooks

When to Use This Skill

  • How do I receive Pipedrive webhooks?
  • How do I authenticate Pipedrive webhook deliveries?
  • How do I handle create.deal, change.person, or delete.activity events?
  • Why is my Pipedrive webhook returning 401 / getting banned?
  • How do I create a Pipedrive webhook (v2) via the API?

Verification (core)

Pipedrive does NOT sign webhooks. There is no HMAC, no signature header, and it is not Standard Webhooks compliant. Security is HTTP Basic Auth: you set http_auth_user / http_auth_password when creating the webhook, and Pipedrive sends them in the standard Authorization: Basic <base64(user:pass)> header on every delivery. Your endpoint must be HTTPS (self-signed certs are not supported). Verify the credentials with a timing-safe comparison:

Installs
11
GitHub Stars
81
First Seen
Jul 24, 2026
pipedrive-webhooks — hookdeck/webhook-skills