Pipedrive
API actions for the Pipedrive integration.
Pipedrive
Manage contacts and deals in Pipedrive to automate your sales pipeline.
Create a Pipedrive deal
Create a deal with optional value, currency, and linked person.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Deal title |
value | number | No | Deal value |
currency | string | No | Three-letter currency code for the deal value. Leave blank to use your account's default currency. |
person_id | number | No | ID of the person to link to this deal |
Response
{}Create a Pipedrive person
Create a new person with optional email, phone, and organization.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Person name |
email | string | No | Email address |
phone | string | No | Phone number |
organization_id | number | No | ID of the organization to link this person to |
Response
{}Find Pipedrive person by email
Look up a person using an email address.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Email to search for |
Response
{}List Pipedrive persons
List a set of people from Pipedrive.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | No | Maximum number of people to return |
Response
[
{}
]Update Pipedrive deal stage
Move a deal to a different stage.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
deal_id | string | Yes | Pipedrive deal ID |
stage_id | string | Yes | ID of the stage to move the deal to |
Response
{}Update a Pipedrive person
Update the name, email, phone, or organization of an existing person.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
person_id | string | Yes | Pipedrive person ID |
name | string | No | New name for the person |
email | string | No | New email address |
phone | string | No | New phone number |
organization_id | number | No | ID of the organization to link this person to |
Response
{}