pipedrive-automation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Pipedrive Automation via Rube MCP

通过Rube MCP实现Pipedrive自动化

Automate Pipedrive CRM workflows including deal management, contact and organization operations, activity scheduling, notes, and pipeline/stage queries through Composio's Pipedrive toolkit.
通过Composio的Pipedrive工具包,自动化Pipedrive CRM的工作流,包括交易管理、联系人和机构操作、活动安排、笔记以及销售管道/阶段查询。

Prerequisites

前提条件

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Pipedrive connection via
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    pipedrive
  • Always call
    RUBE_SEARCH_TOOLS
    first to get current tool schemas
  • 已连接Rube MCP(可使用RUBE_SEARCH_TOOLS)
  • 通过
    RUBE_MANAGE_CONNECTIONS
    激活Pipedrive连接,工具包为
    pipedrive
  • 请始终先调用
    RUBE_SEARCH_TOOLS
    以获取最新的工具架构

Setup

设置步骤

Get Rube MCP: Add
https://rube.app/mcp
as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
  1. Verify Rube MCP is available by confirming
    RUBE_SEARCH_TOOLS
    responds
  2. Call
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    pipedrive
  3. If connection is not ACTIVE, follow the returned auth link to complete Pipedrive OAuth
  4. Confirm connection status shows ACTIVE before running any workflows
获取Rube MCP:在客户端配置中添加
https://rube.app/mcp
作为MCP服务器。无需API密钥,只需添加该端点即可使用。
  1. 通过确认
    RUBE_SEARCH_TOOLS
    能响应,验证Rube MCP是否可用
  2. 使用工具包
    pipedrive
    调用
    RUBE_MANAGE_CONNECTIONS
  3. 如果连接未处于ACTIVE状态,请按照返回的授权链接完成Pipedrive OAuth认证
  4. 在运行任何工作流之前,确认连接状态显示为ACTIVE

Core Workflows

核心工作流

1. Create and Manage Deals

1. 创建与管理交易

When to use: User wants to create a new deal, update an existing deal, or review deal details in the sales pipeline.
Tool sequence:
  1. PIPEDRIVE_SEARCH_ORGANIZATIONS
    - Find existing org to link to the deal [Optional]
  2. PIPEDRIVE_ADD_AN_ORGANIZATION
    - Create organization if none found [Optional]
  3. PIPEDRIVE_SEARCH_PERSONS
    - Find existing contact to link [Optional]
  4. PIPEDRIVE_ADD_A_PERSON
    - Create contact if none found [Optional]
  5. PIPEDRIVE_GET_ALL_PIPELINES
    - Resolve pipeline ID [Prerequisite]
  6. PIPEDRIVE_GET_ALL_STAGES
    - Resolve stage ID within the pipeline [Prerequisite]
  7. PIPEDRIVE_ADD_A_DEAL
    - Create the deal with title, value, org_id, person_id, stage_id [Required]
  8. PIPEDRIVE_UPDATE_A_DEAL
    - Modify deal properties after creation [Optional]
  9. PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL
    - Attach line items/products [Optional]
Key parameters:
  • title
    : Deal title (required for creation)
  • value
    : Monetary value of the deal
  • currency
    : 3-letter ISO currency code (e.g., "USD")
  • pipeline_id
    /
    stage_id
    : Numeric IDs for pipeline placement
  • org_id
    /
    person_id
    : Link to organization and contact
  • status
    : "open", "won", or "lost"
  • expected_close_date
    : Format YYYY-MM-DD
Pitfalls:
  • title
    is the only required field for
    PIPEDRIVE_ADD_A_DEAL
    ; all others are optional
  • Custom fields appear as long hash keys in responses; use dealFields endpoint to map them
  • PIPEDRIVE_UPDATE_A_DEAL
    requires the numeric
    id
    of the deal
  • Setting
    status
    to "lost" requires also providing
    lost_reason
适用场景:用户想要在销售管道中创建新交易、更新现有交易或查看交易详情。
工具序列:
  1. PIPEDRIVE_SEARCH_ORGANIZATIONS
    - 查找要关联到交易的现有机构(可选)
  2. PIPEDRIVE_ADD_AN_ORGANIZATION
    - 若未找到则创建机构(可选)
  3. PIPEDRIVE_SEARCH_PERSONS
    - 查找要关联的现有联系人(可选)
  4. PIPEDRIVE_ADD_A_PERSON
    - 若未找到则创建联系人(可选)
  5. PIPEDRIVE_GET_ALL_PIPELINES
    - 解析管道ID(必填前置步骤)
  6. PIPEDRIVE_GET_ALL_STAGES
    - 解析管道内的阶段ID(必填前置步骤)
  7. PIPEDRIVE_ADD_A_DEAL
    - 创建交易,需提供title、value、org_id、person_id、stage_id(必填)
  8. PIPEDRIVE_UPDATE_A_DEAL
    - 创建后修改交易属性(可选)
  9. PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL
    - 附加产品线/产品(可选)
关键参数:
  • title
    : 交易标题(创建时必填)
  • value
    : 交易金额
  • currency
    : 3位ISO货币代码(例如:"USD")
  • pipeline_id
    /
    stage_id
    : 用于指定管道位置的数字ID
  • org_id
    /
    person_id
    : 关联机构和联系人
  • status
    : "open"(进行中)、"won"(已成交)或"lost"(已流失)
  • expected_close_date
    : 格式为YYYY-MM-DD
注意事项:
  • title
    PIPEDRIVE_ADD_A_DEAL
    唯一必填字段;其他参数均为可选
  • 自定义字段在响应中显示为长哈希键;请使用dealFields端点进行映射
  • PIPEDRIVE_UPDATE_A_DEAL
    需要交易的数字
    id
  • status
    设置为"lost"时,还需提供
    lost_reason

2. Manage Contacts (Persons and Organizations)

2. 管理联系人(个人与机构)

When to use: User wants to create, update, search, or list contacts and companies in Pipedrive.
Tool sequence:
  1. PIPEDRIVE_SEARCH_PERSONS
    - Search for existing person by name, email, or phone [Prerequisite]
  2. PIPEDRIVE_ADD_A_PERSON
    - Create new contact if not found [Required]
  3. PIPEDRIVE_UPDATE_A_PERSON
    - Modify existing contact details [Optional]
  4. PIPEDRIVE_GET_DETAILS_OF_A_PERSON
    - Retrieve full contact record [Optional]
  5. PIPEDRIVE_SEARCH_ORGANIZATIONS
    - Search for existing organization [Prerequisite]
  6. PIPEDRIVE_ADD_AN_ORGANIZATION
    - Create new organization if not found [Required]
  7. PIPEDRIVE_UPDATE_AN_ORGANIZATION
    - Modify organization properties [Optional]
  8. PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION
    - Retrieve full org record [Optional]
Key parameters:
  • name
    : Required for both person and organization creation
  • email
    : Array of objects with
    value
    ,
    label
    ,
    primary
    fields for persons
  • phone
    : Array of objects with
    value
    ,
    label
    ,
    primary
    fields for persons
  • org_id
    : Link a person to an organization
  • visible_to
    : 1 = owner only, 3 = entire company
  • term
    : Search term for SEARCH_PERSONS / SEARCH_ORGANIZATIONS (minimum 2 characters)
Pitfalls:
  • PIPEDRIVE_ADD_AN_ORGANIZATION
    may auto-merge with an existing org; check
    response.additional_data.didMerge
  • Email and phone fields are arrays of objects, not plain strings:
    [{"value": "test@example.com", "label": "work", "primary": true}]
  • PIPEDRIVE_SEARCH_PERSONS
    wildcards like
    *
    or
    @
    are NOT supported; use
    PIPEDRIVE_GET_ALL_PERSONS
    to list all
  • Deletion via
    PIPEDRIVE_DELETE_A_PERSON
    or
    PIPEDRIVE_DELETE_AN_ORGANIZATION
    is soft-delete with 30-day retention, then permanent
适用场景:用户想要在Pipedrive中创建、更新、搜索或列出联系人和公司。
工具序列:
  1. PIPEDRIVE_SEARCH_PERSONS
    - 通过姓名、邮箱或电话搜索现有联系人(必填前置步骤)
  2. PIPEDRIVE_ADD_A_PERSON
    - 若未找到则创建新联系人(必填)
  3. PIPEDRIVE_UPDATE_A_PERSON
    - 修改现有联系人详情(可选)
  4. PIPEDRIVE_GET_DETAILS_OF_A_PERSON
    - 获取完整联系人记录(可选)
  5. PIPEDRIVE_SEARCH_ORGANIZATIONS
    - 搜索现有机构(必填前置步骤)
  6. PIPEDRIVE_ADD_AN_ORGANIZATION
    - 若未找到则创建新机构(必填)
  7. PIPEDRIVE_UPDATE_AN_ORGANIZATION
    - 修改机构属性(可选)
  8. PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION
    - 获取完整机构记录(可选)
关键参数:
  • name
    : 创建个人和机构时均为必填
  • email
    : 个人的邮箱数组,包含
    value
    label
    primary
    字段
  • phone
    : 个人的电话数组,包含
    value
    label
    primary
    字段
  • org_id
    : 将个人关联到机构
  • visible_to
    : 1 = 仅所有者可见,3 = 全公司可见
  • term
    : SEARCH_PERSONS / SEARCH_ORGANIZATIONS的搜索词(最少2个字符)
注意事项:
  • PIPEDRIVE_ADD_AN_ORGANIZATION
    可能会自动合并现有机构;请检查
    response.additional_data.didMerge
  • 邮箱和电话字段是对象数组,而非纯字符串:
    [{"value": "test@example.com", "label": "work", "primary": true}]
  • PIPEDRIVE_SEARCH_PERSONS
    不支持
    *
    @
    等通配符;请使用
    PIPEDRIVE_GET_ALL_PERSONS
    列出所有联系人
  • 通过
    PIPEDRIVE_DELETE_A_PERSON
    PIPEDRIVE_DELETE_AN_ORGANIZATION
    执行的删除为软删除,保留30天后永久删除

3. Schedule and Track Activities

3. 安排与跟踪活动

When to use: User wants to create calls, meetings, tasks, or other activities linked to deals, contacts, or organizations.
Tool sequence:
  1. PIPEDRIVE_SEARCH_PERSONS
    or
    PIPEDRIVE_GET_DETAILS_OF_A_DEAL
    - Resolve linked entity IDs [Prerequisite]
  2. PIPEDRIVE_ADD_AN_ACTIVITY
    - Create the activity with subject, type, due date [Required]
  3. PIPEDRIVE_UPDATE_AN_ACTIVITY
    - Modify activity details or mark as done [Optional]
  4. PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY
    - Retrieve activity record [Optional]
  5. PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER
    - List user's activities [Optional]
Key parameters:
  • subject
    : Activity title (required)
  • type
    : Activity type key string, e.g., "call", "meeting", "task", "email" (required)
  • due_date
    : Format YYYY-MM-DD
  • due_time
    : Format HH:MM
  • duration
    : Format HH:MM (e.g., "00:30" for 30 minutes)
  • deal_id
    /
    person_id
    /
    org_id
    : Link to related entities
  • done
    : 0 = not done, 1 = done
Pitfalls:
  • Both
    subject
    and
    type
    are required for
    PIPEDRIVE_ADD_AN_ACTIVITY
  • type
    must match an existing ActivityTypes key_string in the account
  • done
    is an integer (0 or 1), not a boolean
  • Response includes
    more_activities_scheduled_in_context
    in additional_data
适用场景:用户想要创建与交易、联系人或机构关联的电话、会议、任务或其他活动。
工具序列:
  1. PIPEDRIVE_SEARCH_PERSONS
    PIPEDRIVE_GET_DETAILS_OF_A_DEAL
    - 解析关联实体ID(必填前置步骤)
  2. PIPEDRIVE_ADD_AN_ACTIVITY
    - 创建活动,需提供subject、type、due date(必填)
  3. PIPEDRIVE_UPDATE_AN_ACTIVITY
    - 修改活动详情或标记为完成(可选)
  4. PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY
    - 获取活动记录(可选)
  5. PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER
    - 列出用户的活动(可选)
关键参数:
  • subject
    : 活动标题(必填)
  • type
    : 活动类型键字符串,例如:"call"(电话)、"meeting"(会议)、"task"(任务)、"email"(邮件)(必填)
  • due_date
    : 格式为YYYY-MM-DD
  • due_time
    : 格式为HH:MM
  • duration
    : 格式为HH:MM(例如:"00:30"表示30分钟)
  • deal_id
    /
    person_id
    /
    org_id
    : 关联到相关实体
  • done
    : 0 = 未完成,1 = 已完成
注意事项:
  • subject
    type
    PIPEDRIVE_ADD_AN_ACTIVITY
    的必填字段
  • type
    必须与账户中现有的ActivityTypes key_string匹配
  • done
    是整数(0或1),而非布尔值
  • 响应的additional_data中包含
    more_activities_scheduled_in_context

4. Add and Manage Notes

4. 添加与管理笔记

When to use: User wants to attach notes to deals, persons, organizations, leads, or projects.
Tool sequence:
  1. PIPEDRIVE_SEARCH_PERSONS
    or
    PIPEDRIVE_GET_DETAILS_OF_A_DEAL
    - Resolve entity ID [Prerequisite]
  2. PIPEDRIVE_ADD_A_NOTE
    - Create note with HTML content linked to an entity [Required]
  3. PIPEDRIVE_UPDATE_A_NOTE
    - Modify note content [Optional]
  4. PIPEDRIVE_GET_ALL_NOTES
    - List notes filtered by entity [Optional]
  5. PIPEDRIVE_GET_ALL_COMMENTS_FOR_A_NOTE
    - Retrieve comments on a note [Optional]
Key parameters:
  • content
    : Note body in HTML format (required)
  • deal_id
    /
    person_id
    /
    org_id
    /
    lead_id
    /
    project_id
    : At least one entity link required
  • pinned_to_deal_flag
    /
    pinned_to_person_flag
    : Filter pinned notes when listing
Pitfalls:
  • content
    is required and supports HTML; plain text works but is sanitized server-side
  • At least one of
    deal_id
    ,
    person_id
    ,
    org_id
    ,
    lead_id
    , or
    project_id
    must be provided
  • PIPEDRIVE_GET_ALL_NOTES
    returns notes across all entities by default; filter with entity ID params
适用场景:用户想要将笔记附加到交易、个人、机构、线索或项目。
工具序列:
  1. PIPEDRIVE_SEARCH_PERSONS
    PIPEDRIVE_GET_DETAILS_OF_A_DEAL
    - 解析实体ID(必填前置步骤)
  2. PIPEDRIVE_ADD_A_NOTE
    - 创建与实体关联的HTML格式笔记(必填)
  3. PIPEDRIVE_UPDATE_A_NOTE
    - 修改笔记内容(可选)
  4. PIPEDRIVE_GET_ALL_NOTES
    - 按实体过滤列出笔记(可选)
  5. PIPEDRIVE_GET_ALL_COMMENTS_FOR_A_NOTE
    - 获取笔记的评论(可选)
关键参数:
  • content
    : HTML格式的笔记内容(必填)
  • deal_id
    /
    person_id
    /
    org_id
    /
    lead_id
    /
    project_id
    : 至少需要关联一个实体
  • pinned_to_deal_flag
    /
    pinned_to_person_flag
    : 列出笔记时过滤已固定的笔记
注意事项:
  • content
    为必填字段,支持HTML格式;纯文本也可使用,但会被服务器端清理
  • 必须提供
    deal_id
    person_id
    org_id
    lead_id
    project_id
    中的至少一个
  • PIPEDRIVE_GET_ALL_NOTES
    默认返回所有实体的笔记;请使用实体ID参数进行过滤

5. Query Pipelines and Stages

5. 查询管道与阶段

When to use: User wants to view sales pipelines, stages, or deals within a pipeline/stage.
Tool sequence:
  1. PIPEDRIVE_GET_ALL_PIPELINES
    - List all pipelines and their IDs [Required]
  2. PIPEDRIVE_GET_ONE_PIPELINE
    - Get details and deal summary for a specific pipeline [Optional]
  3. PIPEDRIVE_GET_ALL_STAGES
    - List all stages, optionally filtered by pipeline [Required]
  4. PIPEDRIVE_GET_ONE_STAGE
    - Get details for a specific stage [Optional]
  5. PIPEDRIVE_GET_DEALS_IN_A_PIPELINE
    - List all deals across stages in a pipeline [Optional]
  6. PIPEDRIVE_GET_DEALS_IN_A_STAGE
    - List deals in a specific stage [Optional]
Key parameters:
  • id
    : Pipeline or stage ID (required for single-item endpoints)
  • pipeline_id
    : Filter stages by pipeline
  • totals_convert_currency
    : 3-letter currency code or "default_currency" for converted totals
  • get_summary
    : Set to 1 for deal summary in pipeline responses
Pitfalls:
  • PIPEDRIVE_GET_ALL_PIPELINES
    takes no parameters; returns all pipelines
  • PIPEDRIVE_GET_ALL_STAGES
    returns stages for ALL pipelines unless
    pipeline_id
    is specified
  • Deal counts in pipeline summaries use
    per_stages_converted
    only when
    totals_convert_currency
    is set
适用场景:用户想要查看销售管道、阶段或管道/阶段内的交易。
工具序列:
  1. PIPEDRIVE_GET_ALL_PIPELINES
    - 列出所有管道及其ID(必填)
  2. PIPEDRIVE_GET_ONE_PIPELINE
    - 获取特定管道的详情和交易摘要(可选)
  3. PIPEDRIVE_GET_ALL_STAGES
    - 列出所有阶段,可按管道过滤(必填)
  4. PIPEDRIVE_GET_ONE_STAGE
    - 获取特定阶段的详情(可选)
  5. PIPEDRIVE_GET_DEALS_IN_A_PIPELINE
    - 列出管道内所有阶段的交易(可选)
  6. PIPEDRIVE_GET_DEALS_IN_A_STAGE
    - 列出特定阶段的交易(可选)
关键参数:
  • id
    : 管道或阶段ID(单个项目端点必填)
  • pipeline_id
    : 按管道过滤阶段
  • totals_convert_currency
    : 3位货币代码或"default_currency",用于转换总额
  • get_summary
    : 设置为1时,管道响应中包含交易摘要
注意事项:
  • PIPEDRIVE_GET_ALL_PIPELINES
    无需参数;返回所有管道
  • 除非指定
    pipeline_id
    ,否则
    PIPEDRIVE_GET_ALL_STAGES
    返回所有管道的阶段
  • 仅当设置
    totals_convert_currency
    时,管道摘要中的交易数量才会使用
    per_stages_converted

Common Patterns

通用模式

ID Resolution

ID解析

Always resolve display names to numeric IDs before operations:
  • Organization name -> org_id:
    PIPEDRIVE_SEARCH_ORGANIZATIONS
    with
    term
    param
  • Person name -> person_id:
    PIPEDRIVE_SEARCH_PERSONS
    with
    term
    param
  • Pipeline name -> pipeline_id:
    PIPEDRIVE_GET_ALL_PIPELINES
    then match by name
  • Stage name -> stage_id:
    PIPEDRIVE_GET_ALL_STAGES
    with
    pipeline_id
    then match by name
在执行操作前,请始终将显示名称解析为数字ID:
  • 机构名称 -> org_id: 使用
    term
    参数调用
    PIPEDRIVE_SEARCH_ORGANIZATIONS
  • 个人名称 -> person_id: 使用
    term
    参数调用
    PIPEDRIVE_SEARCH_PERSONS
  • 管道名称 -> pipeline_id: 调用
    PIPEDRIVE_GET_ALL_PIPELINES
    后按名称匹配
  • 阶段名称 -> stage_id: 指定
    pipeline_id
    调用
    PIPEDRIVE_GET_ALL_STAGES
    后按名称匹配

Pagination

分页

Most list endpoints use offset-based pagination:
  • Use
    start
    (offset) and
    limit
    (page size) parameters
  • Check
    additional_data.pagination.more_items_in_collection
    to know if more pages exist
  • Use
    additional_data.pagination.next_start
    as the
    start
    value for the next page
  • Default limit is ~500 for some endpoints; set explicitly for predictable paging
大多数列表端点使用基于偏移量的分页:
  • 使用
    start
    (偏移量)和
    limit
    (每页数量)参数
  • 检查
    additional_data.pagination.more_items_in_collection
    以确定是否还有更多页面
  • 使用
    additional_data.pagination.next_start
    作为下一页的
    start
  • 部分端点的默认
    limit
    约为500;为了分页可预测,请显式设置该参数

Known Pitfalls

已知注意事项

ID Formats

ID格式

  • All entity IDs (deal, person, org, activity, pipeline, stage) are numeric integers
  • Lead IDs are UUID strings, not integers
  • Custom field keys are long alphanumeric hashes (e.g., "a1b2c3d4e5f6...")
  • 所有实体ID(交易、个人、机构、活动、管道、阶段)均为数字整数
  • 线索ID是UUID字符串,而非整数
  • 自定义字段键为长字母数字哈希值(例如:"a1b2c3d4e5f6...")

Rate Limits

速率限制

  • Pipedrive enforces per-company API rate limits; bulk operations should be paced
  • PIPEDRIVE_GET_ALL_PERSONS
    and
    PIPEDRIVE_GET_ALL_ORGANIZATIONS
    can return large datasets; always paginate
  • Pipedrive对每个公司实施API速率限制;批量操作应控制节奏
  • PIPEDRIVE_GET_ALL_PERSONS
    PIPEDRIVE_GET_ALL_ORGANIZATIONS
    可能返回大量数据;请始终使用分页

Parameter Quirks

参数特性

  • Email and phone on persons are arrays of objects, not plain strings
  • visible_to
    is numeric: 1 = owner only, 3 = entire company, 5 = specific groups
  • done
    on activities is integer 0/1, not boolean true/false
  • Organization creation may auto-merge duplicates silently; check
    didMerge
    in response
  • PIPEDRIVE_SEARCH_PERSONS
    requires minimum 2 characters and does not support wildcards
  • 个人的邮箱和电话是对象数组,而非纯字符串
  • visible_to
    为数字:1 = 仅所有者可见,3 = 全公司可见,5 = 特定组可见
  • 活动的
    done
    是整数0/1,而非布尔值true/false
  • 机构创建可能会自动静默合并重复项;请检查响应中的
    didMerge
  • PIPEDRIVE_SEARCH_PERSONS
    要求搜索词最少2个字符,且不支持通配符

Response Structure

响应结构

  • Custom fields appear as hash keys in responses; map them via the respective Fields endpoints
  • Responses often nest data under
    response.data.data
    in wrapped executions
  • Search results are under
    response.data.items
    , not top-level
  • 自定义字段在响应中显示为哈希键;请通过对应的Fields端点进行映射
  • 在包装执行中,数据通常嵌套在
    response.data.data
  • 搜索结果位于
    response.data.items
    下,而非顶层

Quick Reference

快速参考

TaskTool SlugKey Params
Create deal
PIPEDRIVE_ADD_A_DEAL
title
,
value
,
org_id
,
stage_id
Update deal
PIPEDRIVE_UPDATE_A_DEAL
id
,
status
,
value
,
stage_id
Get deal details
PIPEDRIVE_GET_DETAILS_OF_A_DEAL
id
Search persons
PIPEDRIVE_SEARCH_PERSONS
term
,
fields
Add person
PIPEDRIVE_ADD_A_PERSON
name
,
email
,
phone
,
org_id
Update person
PIPEDRIVE_UPDATE_A_PERSON
id
,
name
,
email
Get person details
PIPEDRIVE_GET_DETAILS_OF_A_PERSON
id
List all persons
PIPEDRIVE_GET_ALL_PERSONS
start
,
limit
,
filter_id
Search organizations
PIPEDRIVE_SEARCH_ORGANIZATIONS
term
,
fields
Add organization
PIPEDRIVE_ADD_AN_ORGANIZATION
name
,
visible_to
Update organization
PIPEDRIVE_UPDATE_AN_ORGANIZATION
id
,
name
,
address
Get org details
PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION
id
Add activity
PIPEDRIVE_ADD_AN_ACTIVITY
subject
,
type
,
due_date
,
deal_id
Update activity
PIPEDRIVE_UPDATE_AN_ACTIVITY
id
,
done
,
due_date
Get activity details
PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY
id
List user activities
PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER
user_id
,
start
,
limit
Add note
PIPEDRIVE_ADD_A_NOTE
content
,
deal_id
or
person_id
List notes
PIPEDRIVE_GET_ALL_NOTES
deal_id
,
person_id
,
start
,
limit
List pipelines
PIPEDRIVE_GET_ALL_PIPELINES
(none)
Get pipeline details
PIPEDRIVE_GET_ONE_PIPELINE
id
List stages
PIPEDRIVE_GET_ALL_STAGES
pipeline_id
Deals in pipeline
PIPEDRIVE_GET_DEALS_IN_A_PIPELINE
id
,
stage_id
Deals in stage
PIPEDRIVE_GET_DEALS_IN_A_STAGE
id
,
start
,
limit
Add product to deal
PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL
id
,
product_id
,
item_price

Powered by Composio
任务工具标识关键参数
创建交易
PIPEDRIVE_ADD_A_DEAL
title
,
value
,
org_id
,
stage_id
更新交易
PIPEDRIVE_UPDATE_A_DEAL
id
,
status
,
value
,
stage_id
获取交易详情
PIPEDRIVE_GET_DETAILS_OF_A_DEAL
id
搜索联系人
PIPEDRIVE_SEARCH_PERSONS
term
,
fields
添加联系人
PIPEDRIVE_ADD_A_PERSON
name
,
email
,
phone
,
org_id
更新联系人
PIPEDRIVE_UPDATE_A_PERSON
id
,
name
,
email
获取联系人详情
PIPEDRIVE_GET_DETAILS_OF_A_PERSON
id
列出所有联系人
PIPEDRIVE_GET_ALL_PERSONS
start
,
limit
,
filter_id
搜索机构
PIPEDRIVE_SEARCH_ORGANIZATIONS
term
,
fields
添加机构
PIPEDRIVE_ADD_AN_ORGANIZATION
name
,
visible_to
更新机构
PIPEDRIVE_UPDATE_AN_ORGANIZATION
id
,
name
,
address
获取机构详情
PIPEDRIVE_GET_DETAILS_OF_AN_ORGANIZATION
id
添加活动
PIPEDRIVE_ADD_AN_ACTIVITY
subject
,
type
,
due_date
,
deal_id
更新活动
PIPEDRIVE_UPDATE_AN_ACTIVITY
id
,
done
,
due_date
获取活动详情
PIPEDRIVE_GET_DETAILS_OF_AN_ACTIVITY
id
列出用户活动
PIPEDRIVE_GET_ALL_ACTIVITIES_ASSIGNED_TO_A_PARTICULAR_USER
user_id
,
start
,
limit
添加笔记
PIPEDRIVE_ADD_A_NOTE
content
,
deal_id
person_id
列出笔记
PIPEDRIVE_GET_ALL_NOTES
deal_id
,
person_id
,
start
,
limit
列出管道
PIPEDRIVE_GET_ALL_PIPELINES
获取管道详情
PIPEDRIVE_GET_ONE_PIPELINE
id
列出阶段
PIPEDRIVE_GET_ALL_STAGES
pipeline_id
管道内的交易
PIPEDRIVE_GET_DEALS_IN_A_PIPELINE
id
,
stage_id
阶段内的交易
PIPEDRIVE_GET_DEALS_IN_A_STAGE
id
,
start
,
limit
向交易添加产品
PIPEDRIVE_ADD_A_PRODUCT_TO_A_DEAL
id
,
product_id
,
item_price

Composio提供支持