Pipedrive is a CRM that lets you track your sales pipeline, optimize leads, manage deals with AI and automate your entire sales process so you can focus on selling.
This article provides an overview to get started with the Pipedrive connector in Peliqan. Please contact support if you have any additional questions or remarks.
In Peliqan, go to Connections > Add Connection > Select Pipedrive in the list > Enter the details of your Pipedrive instance.
Steps to fetch your API Key in Pipedrive:
Below are two example queries that show how to get the the timelines from deal stages from Pipedrive (number of days that deals were in a specific deal stage).
Example to add a Person to Pipedrive:
pipedrive_api = pq.connect('Pipedrive')
person = {
'name': "Lee James",
'emails': [{'label': 'work', 'value': '[email protected]', 'primary': True}],
'org_id': 2,
}
result = pipedrive_api.add('person', person)
st.json(result)