Sync activities data with Pipedrive through Apideck's unified API. One integration, instant access.
Full CRUD support available through our unified API
Fields available for Pipedrive Activities
iduser_idcontact_idcompany_idopportunity_idlead_idowner_idtypetitledescriptionnotelocationlocation_addressdonestart_datetime+6 moreSample response structure for activities
{
"id": "12345",
"user_id": "12345",
"contact_id": "12345",
"company_id": "12345",
"opportunity_id": "12345",
"lead_id": "12345",
"owner_id": "12345",
"type": "standard",
"title": "Example Title",
"description": "Example Description",
"note": "Sample memo text",
"location": "string",
"location_address": {
"id": "123",
"type": "primary",
"string": "25 Spring Street, Blackburn, VIC 3130",
"name": "HQ US",
"line1": "25 Spring Street",
"line2": "Suit
...Start syncing Pipedrive activities 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 activities from Pipedrive
const result = await apideck.crm.activities.list({
serviceId: 'pipedrive'
})
for await (const page of result) {
console.log(page)
}
// Returns unified activities 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.