Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
π Quickstart
Connect to Pipedrive with Nango and see data flow in 2 minutes.
Authorize Pipedrive
Go to Connections -> Add Test Connection -> Authorize, then log in to Pipedrive. Later, youβll let your users do the same directly from your app. Call the Pipedrive API
Letβs make your first request to the Pipedrive API (get a list of deals). Replace the placeholders below with your secret key, integration ID, and connection ID:curl "https://api.nango.dev/proxy/v2/deals?limit=10" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>"
Install Nangoβs backend SDK with npm i @nangohq/node. Then run:import { Nango } from '@nangohq/node';
const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });
const res = await nango.get({
endpoint: '/v2/deals',
params: {
limit: 10
},
providerConfigKey: '<INTEGRATION-ID>',
connectionId: '<CONNECTION-ID>'
});
console.log(res.data);
Or fetch credentials with the Node SDK or API.β
Youβre connected! Check the Logs tab in Nango to inspect requests. Implement Nango in your app
Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.
π Pipedrive Integration Guides
Nango-maintained guides for common use cases.
Official docs: Pipedrive OAuth 2.0 Documentation, Pipedrive API Documentation
π§© Pre-built syncs & actions for Pipedrive
Enable them in your dashboard. Extend and customize to fit your needs.
Activities
| Function name | Description | Type | Source code |
|---|
create-activity | Create a new activity in Pipedrive. | Action | π Github |
delete-activity | Delete or archive a activity in Pipedrive. | Action | π Github |
get-activity | Retrieve a single activity from Pipedrive. | Action | π Github |
list-activities | List activities from Pipedrive | Action | π Github |
update-activity | Update a activity in Pipedrive | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-deal | Create a deal in Pipedrive | Action | π Github |
delete-deal | Delete or archive a deal in Pipedrive. | Action | π Github |
get-deal | Retrieve a single deal from Pipedrive. | Action | π Github |
list-deals | List deals from Pipedrive | Action | π Github |
update-deal | Update a deal in Pipedrive | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-lead | Create a lead in Pipedrive | Action | π Github |
delete-lead | Delete or archive a lead in Pipedrive. | Action | π Github |
get-lead | Retrieve a single lead from Pipedrive. | Action | π Github |
list-leads | List leads from Pipedrive. | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-note | Create a note in Pipedrive. | Action | π Github |
delete-note | Delete or archive a note in Pipedrive | Action | π Github |
get-note | Retrieve a single note from Pipedrive. | Action | π Github |
update-note | Update a note in Pipedrive. | Action | π Github |
Organizations
| Function name | Description | Type | Source code |
|---|
create-organization | Create a organization in Pipedrive. | Action | π Github |
delete-organization | Delete or archive a organization in Pipedrive. | Action | π Github |
get-organization | Retrieve a single organization from Pipedrive. | Action | π Github |
list-organizations | List organizations from Pipedrive. | Action | π Github |
update-organization | Update a organization in Pipedrive. | Action | π Github |
Persons
| Function name | Description | Type | Source code |
|---|
create-person | Create a person in Pipedrive. | Action | π Github |
delete-person | Delete or archive a person in Pipedrive. | Action | π Github |
get-person | Retrieve a single person from Pipedrive. | Action | π Github |
list-persons | List persons from Pipedrive | Action | π Github |
update-person | Update a person in Pipedrive | Action | π Github |
Pipelines
| Function name | Description | Type | Source code |
|---|
create-pipeline | Create a pipeline in Pipedrive | Action | π Github |
delete-pipeline | Delete or archive a pipeline in Pipedrive | Action | π Github |
get-pipeline | Retrieve a single pipeline from Pipedrive. | Action | π Github |
list-pipelines | List pipelines from Pipedrive | Action | π Github |
update-pipeline | Update a pipeline in Pipedrive | Action | π Github |
Products
| Function name | Description | Type | Source code |
|---|
create-product | Create a product in Pipedrive. | Action | π Github |
delete-product | Delete or archive a product in Pipedrive. | Action | π Github |
get-product | Retrieve a single product from Pipedrive. | Action | π Github |
list-products | List products from Pipedrive. | Action | π Github |
update-product | Update a product in Pipedrive. | Action | π Github |
| Function name | Description | Type | Source code |
|---|
create-stage | Create a stage in Pipedrive | Action | π Github |
delete-stage | Delete or archive a stage in Pipedrive. | Action | π Github |
get-stage | Retrieve a single stage from Pipedrive. | Action | π Github |
list-stages | List stages from Pipedrive | Action | π Github |
update-stage | Update a stage in Pipedrive | Action | π Github |
| Function name | Description | Type | Source code |
|---|
get-user | Retrieve a single user from Pipedrive. | Action | π Github |
list-users | List users from Pipedrive | Action | π Github |
| Function name | Description | Type | Source code |
|---|
list-notes | List notes from Pipedrive. | Action | π Github |
update-lead | Update a lead in Pipedrive | Action | π Github |
activities | Sync activities from Pipedrive | Sync | π Github |
deals | Sync deals from Pipedrive. | Sync | π Github |
leads | Sync leads from Pipedrive. | Sync | π Github |
notes | Sync notes from Pipedrive | Sync | π Github |
organizations | Sync organizations from Pipedrive. | Sync | π Github |
persons | Sync persons from Pipedrive. | Sync | π Github |
pipelines | Sync pipelines from Pipedrive. | Sync | π Github |
products | Sync products from Pipedrive. | Sync | π Github |
stages | Sync stages from Pipedrive | Sync | π Github |
users | Sync users from Pipedrive. | Sync | π Github |