谱蓝云 OpenAPI
  1. 商机管理
谱蓝云 OpenAPI
  • 接入指南
    • 基本概念介绍
    • 开发前必读
    • 获取 access_token
      GET
  • 回调通知
    • 客户
    • 组织架构
    • 商机
  • 获客拉新
    • 渠道活码
    • 加微任务
  • 客户管理
    • 企微客户
      • 获取客户商机记录
      • 更新客户资料
      • 更新客户标签
      • 创建客户动态
      • 获取客户标签数据
      • 获取客户资料信息
      • 获取客户关系与所在群聊
      • 开发中心-客户业务线归属
      • 搜索客户列表
      • 更新同步客户信息
    • 客户群
      • 客户群分页查询
    • 标签任务
  • 客户运营
    • 客户群发
    • 企微朋友圈
    • 群群发
      • 创建群群发任务
      • 群群发任务发送结果
  • 营销活动
    • 营销 SOP
    • 直播管理
  • 内容中心
    • 基础素材
      • 创建基础素材
    • 自定义表单
      • 获取指定表单数据
  • 销售管理
    • 线索管理
      • 创建线索
    • 商机管理
      • 创建商机
        POST
      • 跟进商机
        POST
    • 工作日历
      • 创建日程
  • 会话存档
    • 聊天记录
      • 查询员工与客户的记录
  • 数据中心
    • 客户联系统计
  • 组织架构
  • 应用通知
    • 创建应用通知
  • 内部标签
    • 获取企业内部标签库
    • 添加内部标签
    • 编辑内部标签
    • 删除内部标签
    • 给线索打标签
    • 移除线索身上的标签
    • 给客户打标签
    • 移除客户身上的标签
  • 腾讯会议
    • 添加待办事项
    • 添加学生面谈记录
    • 添加学生活动
    • 添加学生课外补习
    • 添加学生校内外奖项
  • 数据模型
    • 基础素材
      • 基础素材公共字段
      • 文本素材
      • 图片素材
      • 链接素材
      • 视频素材
    • Schemas
      • OpenLineBelongReqVO
      • CommonResultBoolean
      • CommonResultOpenPlatformGroupChatGroupMsgSendResultRespVO
      • CommonResultListOpenLineBelongRespVO
      • OpenTodoListCreateReqVO
      • OpenPlatformGroupChatGroupMsgSendResultRespVO
      • OpenLineBelongRespVO
      • OpenStudentGrowthDevelopmentCreateReqVO
      • SendResult
      • OpenStudentActivitiesCreateReqVO
      • OpenExtracurricularTutoringCreateReqVO
      • OpenStudentCampusTrophiesCreateReqVO
    • 客户管理
      • OpenPlatformCustomerSearchReqVO
      • CommonResultListOpenCustomerSimpleInfoRespVO
      • OpenCustomerSimpleInfoRespVO
    • 客户群管理
      • OpenPlatformChatGroupReqVO
      • CommonResultOpenPlatformChatGroupRespVO
      • OpenPlatformChatGroupRespVO
      • OpenPlatformChatGroupDetailRespVO
    • 群群发
      • OpenPlatformGroupChatGroupMsgCrateReqVO
      • OpenPlatformGroupChatConditionReqVO
    • Respond Template
    • ProcessInfoRespVO
    • InfoExtend
    • prospectFollowUserRefReqVO
    • prospectInfoReqVO
    • ScheduleRemindReqVO
    • NextTime
    • CommonResultLong
  1. 商机管理

跟进商机

开发中
POST
/open-api/customer/biz-submit/add-follow
最后修改时间:2025-09-16 06:06:09
该接口用于通过应用获取企业的跟进商机/服务
注意
detailList 中每个 detail 必须与 moduleType 一致,否则会报错。
moduleType 指定为 Radio,则需要填写 optionId。
moduleType 指定为 Attachment,则需要填写 fileId。
moduleType 指定为 Location,则需要填写 lat 和 lng。
其他类型,填写 content。

请求参数

Header 参数

Body 参数application/json

示例
{
  "businessId": 10,
  "stageId": 10,
  "templateId": 10,
  "templateName": "日常",
  "version": 1,
  "userId": 10,
  "result": "finish",
  "nextTime": {
    "scheduleName": "日常跟进",
    "nextContactTime": "2019-08-24T14:15:22Z",
    "nextTimeLength": 60,
    "nextRemindLength": 30
  },
  "actualStartTime": "2019-08-24T14:15:22Z",
  "actualEndTime": "2019-08-24T14:15:22Z",
  "remark": "备忘录",
  "detailList": [
    {
      "moduleId": 20,
      "moduleType": "Radio",
      "moduleName": "你的问题是",
      "moduleConfig": "{\"label\":\"单选\"}",
      "moduleCommunicateResult": "finish",
      "detail": [
        {
          "optionId": 20,
          "content": "这是答案",
          "nextTime": {
            "scheduleName": "日常跟进",
            "nextContactTime": "2019-08-24T14:15:22Z",
            "nextTimeLength": 60,
            "nextRemindLength": 30
          },
          "fileId": 10,
          "fileName": "file.png",
          "fileUrl": "https://file.png",
          "fileSize": 1024,
          "lat": 39.984154,
          "lng": 39.984154
        }
      ]
    }
  ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/open-api/customer/biz-submit/add-follow' \
--header 'Authorization: Bearer {{auth_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
  "businessId": 10,
  "stageId": 10,
  "templateId": 10,
  "templateName": "日常",
  "version": 1,
  "userId": 10,
  "result": "finish",
  "nextTime": {
    "scheduleName": "日常跟进",
    "nextContactTime": "2019-08-24T14:15:22Z",
    "nextTimeLength": 60,
    "nextRemindLength": 30
  },
  "actualStartTime": "2019-08-24T14:15:22Z",
  "actualEndTime": "2019-08-24T14:15:22Z",
  "remark": "备忘录",
  "detailList": [
    {
      "moduleId": 20,
      "moduleType": "Radio",
      "moduleName": "你的问题是",
      "moduleConfig": "{\"label\":\"单选\"}",
      "moduleCommunicateResult": "finish",
      "detail": [
        {
          "optionId": 20,
          "content": "这是答案",
          "nextTime": {
            "scheduleName": "日常跟进",
            "nextContactTime": "2019-08-24T14:15:22Z",
            "nextTimeLength": 60,
            "nextRemindLength": 30
          },
          "fileId": 10,
          "fileName": "file.png",
          "fileUrl": "https://file.png",
          "fileSize": 1024,
          "lat": 39.984154,
          "lng": 39.984154
        }
      ]
    }
  ]
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "code": 0,
    "msg": "string"
}
上一页
创建商机
下一页
创建日程
Built with