{ "opencollection": "1.0.0", "info": { "name": "Pipedrive API v1 Activities Webhooks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get all Webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.pipedrive.com/v1/webhooks", "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Returns data about all the Webhooks of a company." }, { "info": { "name": "Create a new Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.pipedrive.com/v1/webhooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `create.deal` for any newly added deals, `delete.persons` for any deleted persons, etc. See the guide for Webhooks for more details." }, { "info": { "name": "Delete existing Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pipedrive.com/v1/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the Webhook to delete" } ], "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Deletes the specified Webhook." } ] } ], "bundled": true }