Create Person
Create a new person in Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PERSON])
Create Organization
Add a new organization to Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ORGANIZATION])
Create Deal
Create a new deal in Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL])
Update Person
Update an existing person's details in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PERSON])
Update Organization
Modify an existing organization's information in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ORGANIZATION])
Update Deal
Update an existing deal's details in Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL])
Add Note
Add a note to a person, organization, or deal in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE])
Add Activity
Create a new activity associated with a deal, person, or organization.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_ACTIVITY])
Update Activity
Modify an existing activity's details in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ACTIVITY])
Delete Person
Remove a person from Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_PERSON])
Delete Organization
Delete an organization from Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ORGANIZATION])
Delete Deal
Remove a deal from Pipedrive CRM.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_DEAL])
Add Product To Deal
Associate a product with an existing deal in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_PRODUCT_TO_DEAL])
Update Deal Stage
Move a deal to a different stage in the pipeline.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL_STAGE])
Add File
Upload and attach a file to a person, organization, or deal.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_FILE])
New Person Created
Triggered when a new person is added to Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PERSON_CREATED])
New Organization Created
Triggered when a new organization is added to Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ORGANIZATION_CREATED])
New Deal Created
Triggered when a new deal is created in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_CREATED])
Deal Stage Changed
Triggered when a deal moves to a different stage in the pipeline.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_STAGE_CHANGED])
Deal Won
Triggered when a deal is marked as won in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_WON])
Deal Lost
Triggered when a deal is marked as lost in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_LOST])
Activity Completed
Triggered when an activity is marked as completed in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACTIVITY_COMPLETED])
Note Added
Triggered when a new note is added to a person, organization, or deal.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NOTE_ADDED])
Person Updated
Triggered when a person's details are updated in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PERSON_UPDATED])
Organization Updated
Triggered when an organization's information is modified in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ORGANIZATION_UPDATED])
Deal Updated
Triggered when a deal's details are updated in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_UPDATED])
Product Added To Deal
Triggered when a product is associated with a deal in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PRODUCT_ADDED_TO_DEAL])
File Uploaded
Triggered when a new file is uploaded to Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FILE_UPLOADED])
Activity Due
Triggered when an activity's due date is reached in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACTIVITY_DUE])
Deal Value Changed
Triggered when the value of a deal is modified in Pipedrive.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_VALUE_CHANGED])