Pipedrive

Pipedrive

Send event data to Pipedrive

Configuration

OptionDescription
Domain
Type: string
Required: True

Pipedrive domain. This is found in Pipedrive in Settings > Company settings > Company domain.

API Token
Type: string
Required: True

Pipedrive API token. This is found in Pipedrive in Settings > Personal preferences > API > Your personal API token.

External ID field for a Person in Pipedrive
Type: string
Required: False

This is a key by which a Person in Pipedrive will be searched. It can be either Person id or has of a custom field containing external id. Default value is person_id.

External ID field for an Organization in Pipedrive
Type: string
Required: False

This is a key by which an Organization in Pipedrive will be searched. It can be either Organization id or has of a custom field containing external id. Default value is org_id.

External ID field for a Deal in Pipedrive
Type: string
Required: False

This is a key by which a Deal in Pipedrive will be searched. It can be either Deal id or has of a custom field containing external id. Default value is deal_id.

Debug Mode
Type: boolean
Required: False

Will log configuration and request details

Using our REST API you can create this destination like so:

Terminal
# Create a new destination
curl --location 'https://us.i.posthog.com/api/environments/:project_id/hog_functions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <POSTHOG_PERSONAL_API_KEY>' \
--data '{
"type": "destination",
"name": "Pipedrive",
"inputs": {
"domain": {
"value": ""
},
"apiToken": {
"value": ""
}
},
"enabled": true,
"template_id": "segment-actions-pipedrive"
}'