Skip to content
For LLMsView as Markdown·

Pipedrive

Sales CRM for managing deals, contacts, and activities via the Pipedrive API.

DetailValue
CategoryCRM
Base URLhttps://api.pipedrive.com/v1
AuthenticationAPI Key (Query)
Endpoints6
Connector keypipedrive

Using Pipedrive in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Pipedrive from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /personsList all persons
POST /personsCreate a person
GET /dealsList all deals
POST /dealsCreate a deal
GET /organizationsList all organizations
GET /activitiesList all activities

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /persons

List all persons

DetailValue
Operation IDcrm.listPersons
MethodGET
Path/persons

Parameters

NameLocationTypeRequired
startqueryintegerNo
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listPersons.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.

POST /persons

Create a person

DetailValue
Operation IDcrm.createPerson
MethodPOST
Path/persons

Parameters

No parameters.

Request Body

FieldType
namestring
emailstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.createPerson.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.

GET /deals

List all deals

DetailValue
Operation IDcrm.listDeals
MethodGET
Path/deals

Parameters

NameLocationTypeRequired
startqueryintegerNo
limitqueryintegerNo
statusquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listDeals.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.

POST /deals

Create a deal

DetailValue
Operation IDcrm.createDeal
MethodPOST
Path/deals

Parameters

No parameters.

Request Body

FieldType
titlestring
valuenumber
currencystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.createDeal.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.

GET /organizations

List all organizations

DetailValue
Operation IDcrm.listOrganizations
MethodGET
Path/organizations

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listOrganizations.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.

GET /activities

List all activities

DetailValue
Operation IDcrm.listActivities
MethodGET
Path/activities

Parameters

NameLocationTypeRequired
startqueryintegerNo
limitqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Pipedrive connection from the Connection dropdown.
  3. In the Operation dropdown, select crm.listActivities.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Pipedrive API reference.