Sync persons data with Pipedrive through Apideck's unified API. One integration, instant access.
In Apideck, this resource is called Contacts (API: contacts)
Full CRUD support available through our unified API
Fields available for Pipedrive Persons
idnameowner_idcompany_idfirst_namelast_namephone_numbersemailsupdated_atcreated_atSample response structure for persons
{
"id": "12345",
"name": "Example Name",
"owner_id": "12345",
"company_id": "12345",
"first_name": "Example First Name",
"last_name": "Example Last Name",
"phone_numbers": [
{
"id": "12345",
"number": "+1-555-123-4567",
"type": "primary"
}
],
"emails": [
{
"id": "12345",
"email": "contact@example.com",
"type": "primary"
}
],
"updated_at": "2024-01-15T10:30:00.000Z",
"created_at": "2024-01-15T10:30:00.000Z"
}Start syncing Pipedrive persons in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List persons from Pipedrive
const result = await apideck.crm.contacts.list({
serviceId: 'pipedrive'
})
for await (const page of result) {
console.log(page)
}
// Returns unified persons dataWe build and maintain connectors, so you don't have to. View our full list of CRM connectors.
Missing a connector? We're able to add new connectors.
Build Pipedrive integrations in your favorite language with our official SDKs.
Build Pipedrive integrations with the official Node.js SDK.
Build Pipedrive integrations with the official TypeScript SDK.
Build Pipedrive integrations with the official PHP SDK.
Build Pipedrive integrations with the official .NET.
Build Pipedrive integrations with the official Python SDK.
Build Pipedrive integrations with the official Java SDK.
Build Pipedrive integrations with the official Go SDK.