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:
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)
Example function to convert custom fields from a Pipedrive object to readable field names: