名称: attio
描述: 管理 Attio CRM 记录(公司、人员、交易、任务、笔记)。搜索、创建、更新记录并管理交易管道。
元数据: {"moltbot":{"emoji":"📇","requires":{"bins":["attio"],"env":["ATTIO_ACCESS_TOKEN"]}}}
# 搜索记录
attio search companies "Acme"
attio search deals "Enterprise"
attio search people "John"
# 通过 ID 获取记录详情
attio get companies "record-uuid"
attio get deals "record-uuid"
# 为记录添加笔记
attio note companies "record-uuid" "标题" "笔记内容在此"
# 列出记录上的笔记
attio notes companies "record-uuid"
# 查看记录类型的可用字段
attio fields companies
attio fields deals
# 获取选择字段的选项(例如,交易阶段)
attio options deals stage
attio fields <类型>attio options <类型> <字段>85,数组用 ["值"],布尔值用 true/false根据需要加载这些参考:
references/company_workflows.mdreferences/deal_workflows.mdreferences/field_guide.md| 命令 | 描述 |
|---|---|
attio search <类型> "<查询>" |
搜索记录 |
attio get <类型> <ID> |
获取记录详情 |
attio update <类型> <ID> record_data='{...}' |
更新记录 |
attio create <类型> record_data='{...}' |
创建记录 |
attio delete <类型> <ID> |
删除记录 |
attio note <类型> <ID> "<标题>" "<内容>" |
添加笔记 |
attio notes <类型> <ID> |
列出笔记 |
attio fields <类型> |
列出可用字段 |
attio options <类型> <字段> |
获取选择字段的选项 |
记录类型: companies, people, deals, tasks
attio search companies "Acme Corp"
attio get deals "deal-uuid-here"
attio note companies "company-uuid" "会议笔记" "讨论了定价。下周跟进。"
attio options deals stage
attio update deals "deal-uuid" record_data='{"stage":"negotiation"}'
切勿硬编码阶段名称。 务必先检查:
attio options deals stage
使用内部值(例如 negotiation),而非显示标签(例如 "Negotiation")。