Webhooks allow you to get programmatic webhook notifications from Pipedrive about changes to your data in real time.
The Pipedream platform is the simplest way to develop and execute event driven code, and this is an example workflow using Pipedrive webhooks as the trigger.
This workflow accepts webhooks from Pipedrive and the user can:
Here is the Pipedrive documentation for Guide for Webhooks
If you click "Test Event" in the workflow, this is the event the platform will send:
{
"v": 1,
"matches_filters": {
"current": [],
"previous": []
},
"meta": {
"v": 1,
"action": "added",
"object": "deal",
"id": "",
"company_id": "",
"user_id": "",
"type": "general",
"host": "company.pipedrive.com",
"timestamp": 1523440213,
"timestamp_micro": 1523440213384700,
"permitted_user_ids": [],
"trans_pending": false,
"is_bulk_update": false,
"pipedrive_service_name": false,
"matches_filters": {
"current": [],
"previous": []
},
"webhook_id": 12345678
},
"retry": 0,
"current": "(the object data as of this update)",
"previous": "(the object data prior to this update)",
"event": "event name"
}