亿量AI能力开放平台
  1. 拨打电话
亿量AI能力开放平台
  • 平台简介
  • 对接准备
  • 服务商账户充值
  • 名词解释
  • 错误提示
  • 销售保客户接入
    • 接入流程
    • 授权
      • 获取接口调用token
    • 机构管理
      • 机构账户充值
      • 创建机构
    • 坐席管理
      • 修改坐席名称接口
      • 获取服务商余额接口
      • 添加坐席接口
      • 修改外显接口
      • 坐席分页列表接口
    • 获取话单和话费
      • 服务商-通话账单详情列表
      • 根据话单id获取话单数据
      • 外呼统计数据
  • SaaS客户接入
    • 接入流程
    • 授权
      • 获取接口调用token
    • 机构管理
      • 创建机构
    • 拨打电话
      • SAAS服务商拨打电话
      • 话单回调详情
      • 录音回调详情
  • SDK客户接入
    • 机构手机号验证登录方式
      • 接入流程
      • 获取验证码
      • 验证码登录
    • 机构ID免登录方式
      • 接入流程
      • 获取机构token
  • 销售保AICRM开放平台
    • 对接流程
    • 授权
      • 获取接口调用token
      • 获取iframe请求token
    • 机构管理
      • 无手机号创建机构
      • 创建机构
    • 员工管理
      • 添加员工接口
      • 修改员工名称接口
      • 员工坐席分页列表接口
    • 拨打电话
      • AxB类型的呼叫流程和呈现效果
      • 拨打电话
        POST
      • 话单回调详情
        POST
      • 录音回调详情
        POST
      • AI分析录音回调
        POST
      • AI分析被叫回调
        POST
    • 非电话AI分析
      • 录音上传分析
      • 文本上传AI分析
      • AI文本分析回调
    • iframe嵌入对接
      • iframe客户AI分析页对接
      • iframe沟通详情分析页面对接
      • iframe沟通分析列表页面对接文档
  • 未命名接口
    POST
  1. 拨打电话

AI分析被叫回调

POST
沟通记录上传中传入的callbackUrl地址
AI分析完成后回调传入时的接口
请求参数为回调时的请求参数
返回结果通过http状态200判断成功

请求参数

Header 参数
Content-Type
string 
必需
默认值:
application/json
Authorization
string 
token
必需
Body 参数application/json
status
integer 
必需
任务状态 1进行中 2成功 3失败(回调时只有 2 和 3)
message
string 
成功或失败原因
必需
taskId
string 
任务ID
必需
data
object 
必需
callbackInfo
string 
回调时附加信息
可选
taskType
integer 
2
必需
clueData
object 
线索回调信息
必需
infoId
string 
调用时的ID
必需
clueId
string 
线索ID
必需
userId
string 
用户ID
必需
labelScore
number <double>
分数
必需
aiLabel
string 
意向度
必需
profile
array[string]
客户画像
可选
objection
array[string]
客户异议
可选
actionItems
array[string]
行动建议
可选
aiAbstract
string 
摘要
可选
summaryList
array [object {5}] 
提示词数据集合
必需
intentionDegree
string 
成交意向等级
必需
intentionAnalysis
string 
必需
成交意向等级分析
churnRisk
string 
流失风险等级
必需
churnRiskAnalysis
string 
流失风险等级分析
必需
aiTagsNew
array [object {2}] 
AI标签列表
可选
示例
{
    "type": "object",
    "properties": {
        "message": {
            "type": "string",
            "description": "成功或失败原因"
        },
        "data": {
            "type": "object",
            "properties": {
                "sopFinish": {
                    "type": "boolean",
                    "description": "SOP是否完成"
                },
                "callAnalysis": {
                    "type": "object",
                    "properties": {
                        "recordUrl": {
                            "type": "string",
                            "description": "录音地址"
                        },
                        "aiLabel": {
                            "type": "integer",
                            "description": "意向度"
                        },
                        "aiLabelName": {
                            "type": "string",
                            "description": "意向度名字"
                        },
                        "duration": {
                            "type": "integer",
                            "description": "时长"
                        },
                        "callee": {
                            "type": "string",
                            "description": "主叫"
                        },
                        "caller": {
                            "type": "string",
                            "description": "被叫"
                        }
                    },
                    "required": [
                        "recordUrl",
                        "aiLabel",
                        "aiLabelName",
                        "duration"
                    ],
                    "x-apifox-orders": [
                        "recordUrl",
                        "aiLabel",
                        "aiLabelName",
                        "duration",
                        "callee",
                        "caller"
                    ],
                    "description": "基本信息"
                },
                "interruptCustomers": {
                    "type": "integer",
                    "description": "打断客户次数"
                },
                "asrResult": {
                    "type": "object",
                    "properties": {
                        "asrResult": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "role": {
                                        "type": "string",
                                        "description": "本句的角色,取值:客服、客户。"
                                    },
                                    "words": {
                                        "type": "string",
                                        "description": "对话内容"
                                    },
                                    "end": {
                                        "type": "integer",
                                        "description": "本句相对于整个对话的结束时间,单位:毫秒。"
                                    },
                                    "begin": {
                                        "type": "integer",
                                        "description": "本句相对于整个对话的开始时间,单位:毫秒。"
                                    }
                                },
                                "required": [
                                    "role",
                                    "words",
                                    "end",
                                    "begin"
                                ],
                                "x-apifox-orders": [
                                    "role",
                                    "words",
                                    "end",
                                    "begin"
                                ]
                            }
                        }
                    },
                    "required": [
                        "asrResult"
                    ],
                    "x-apifox-orders": [
                        "asrResult"
                    ],
                    "description": "文件转写结果。"
                },
                "abuseCustomers": {
                    "type": "integer",
                    "description": "辱骂客户次数"
                },
                "hitResult": {
                    "type": "object",
                    "properties": {
                        "hitResult": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "hits": {
                                        "type": "object",
                                        "properties": {
                                            "hit": {
                                                "type": "array",
                                                "items": {
                                                    "type": "object",
                                                    "properties": {
                                                        "keyWords": {
                                                            "type": "object",
                                                            "properties": {
                                                                "keyWord": {
                                                                    "type": "array",
                                                                    "items": {
                                                                        "type": "object",
                                                                        "properties": {
                                                                            "val": {
                                                                                "type": "string",
                                                                                "description": "命中话题的部分句子"
                                                                            },
                                                                            "from": {
                                                                                "type": "integer",
                                                                                "description": "关键字的起始位置。"
                                                                            },
                                                                            "to": {
                                                                                "type": "integer",
                                                                                "description": "关键字的结束位置。"
                                                                            }
                                                                        },
                                                                        "required": [
                                                                            "val",
                                                                            "from",
                                                                            "to"
                                                                        ],
                                                                        "x-apifox-orders": [
                                                                            "val",
                                                                            "from",
                                                                            "to"
                                                                        ]
                                                                    }
                                                                }
                                                            },
                                                            "required": [
                                                                "keyWord"
                                                            ],
                                                            "x-apifox-orders": [
                                                                "keyWord"
                                                            ],
                                                            "description": "命中的关键字"
                                                        },
                                                        "phrase": {
                                                            "type": "object",
                                                            "properties": {
                                                                "role": {
                                                                    "type": "string",
                                                                    "description": "本句的角色,取值:客服、客户。"
                                                                },
                                                                "words": {
                                                                    "type": "string",
                                                                    "description": "对话内容"
                                                                },
                                                                "end": {
                                                                    "type": "integer",
                                                                    "description": "本句相对于整个对话的结束时间,单位:毫秒。"
                                                                },
                                                                "begin": {
                                                                    "type": "integer",
                                                                    "description": "本句相对于整个对话的开始时间,单位:毫秒。"
                                                                }
                                                            },
                                                            "required": [
                                                                "role",
                                                                "words",
                                                                "end",
                                                                "begin"
                                                            ],
                                                            "x-apifox-orders": [
                                                                "role",
                                                                "words",
                                                                "end",
                                                                "begin"
                                                            ]
                                                        }
                                                    },
                                                    "x-apifox-orders": [
                                                        "keyWords",
                                                        "phrase"
                                                    ]
                                                }
                                            }
                                        },
                                        "required": [
                                            "hit"
                                        ],
                                        "x-apifox-orders": [
                                            "hit"
                                        ],
                                        "description": "话题命中"
                                    },
                                    "name": {
                                        "type": "string",
                                        "description": "命中的话题名称。"
                                    }
                                },
                                "x-apifox-orders": [
                                    "hits",
                                    "name"
                                ]
                            }
                        }
                    },
                    "required": [
                        "hitResult"
                    ],
                    "x-apifox-orders": [
                        "hitResult"
                    ],
                    "description": "话题命中结果"
                },
                "speechSpeed": {
                    "type": "number",
                    "description": "语速",
                    "format": "double"
                },
                "infoId": {
                    "type": "string",
                    "description": "调用时的ID"
                },
                "callbackInfo": {
                    "type": "string",
                    "description": "回调时附加信息"
                },
                "speechScale": {
                    "type": "number",
                    "description": "说话占比",
                    "format": "double"
                },
                "notFinishSopName": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    },
                    "description": "未完成的SOP名字"
                },
                "finishSopName": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    },
                    "description": "完成的SOP名字"
                },
                "profile": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户画像"
                    },
                    "description": "客户画像",
                    "deprecated": true
                },
                "objection": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户异议"
                    },
                    "description": "客户异议",
                    "deprecated": true
                },
                "actionItems": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "行动建议"
                    },
                    "description": "行动建议",
                    "deprecated": true
                },
                "customerPainPoint": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户痛点",
                        "deprecated": true
                    },
                    "description": "客户痛点",
                    "deprecated": true
                },
                "aiAbstract": {
                    "type": "string",
                    "description": "摘要",
                    "deprecated": true
                },
                "labelScore": {
                    "type": "number",
                    "format": "double",
                    "description": "意向分"
                },
                "summaryList": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "key": {
                                "type": "string",
                                "description": "字段key"
                            },
                            "name": {
                                "type": "string",
                                "description": "字段名称"
                            },
                            "value": {
                                "type": "string",
                                "description": "字段值"
                            },
                            "type": {
                                "type": "number",
                                "description": "字段类型 0字符串 1数组",
                                "format": "long"
                            },
                            "sort": {
                                "type": "integer",
                                "description": "序号"
                            }
                        },
                        "x-apifox-orders": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ],
                        "required": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ]
                    },
                    "description": "提示词数据集合"
                },
                "sopDescribe": {
                    "type": "string",
                    "description": "sop描述"
                },
                "speechSpeedDescribe": {
                    "type": "string",
                    "description": "语速描述"
                },
                "abuseCustomersDescribe": {
                    "type": "string",
                    "description": "辱骂客户描述"
                },
                "interruptCustomersDescribe": {
                    "type": "string",
                    "description": "打断客户描述"
                },
                "intentionDegree": {
                    "type": "string",
                    "description": "成交意向等级"
                },
                "intentionAnalysis": {
                    "type": "string",
                    "description": "成交意向等级分析"
                },
                "churnRisk": {
                    "type": "string",
                    "description": "流失风险等级"
                },
                "churnRiskAnalysis": {
                    "type": "string",
                    "description": "流失风险等级分析"
                },
                "speechScaleDescribe": {
                    "type": "string",
                    "description": "说话占比描述"
                }
            },
            "required": [
                "sopFinish",
                "callAnalysis",
                "aiAbstract",
                "interruptCustomers",
                "asrResult",
                "abuseCustomers",
                "hitResult",
                "speechSpeed",
                "infoId",
                "callbackInfo",
                "speechScale",
                "notFinishSopName",
                "finishSopName",
                "profile",
                "objection",
                "actionItems",
                "labelScore",
                "summaryList",
                "sopDescribe",
                "speechScaleDescribe",
                "speechSpeedDescribe",
                "abuseCustomersDescribe",
                "interruptCustomersDescribe",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ],
            "x-apifox-orders": [
                "sopFinish",
                "callAnalysis",
                "aiAbstract",
                "profile",
                "objection",
                "actionItems",
                "customerPainPoint",
                "interruptCustomers",
                "asrResult",
                "abuseCustomers",
                "hitResult",
                "speechSpeed",
                "infoId",
                "callbackInfo",
                "speechScale",
                "notFinishSopName",
                "finishSopName",
                "labelScore",
                "summaryList",
                "sopDescribe",
                "speechScaleDescribe",
                "speechSpeedDescribe",
                "abuseCustomersDescribe",
                "interruptCustomersDescribe",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ]
        },
        "status": {
            "type": "integer",
            "description": "任务状态 1进行中 2成功 3失败(回调时只有 2 和 3)"
        },
        "taskId": {
            "type": "string",
            "description": "任务ID"
        },
        "callbackInfo": {
            "type": "string",
            "description": "回调时附加信息"
        },
        "taskType": {
            "type": "integer",
            "description": "1通话 2线索"
        },
        "clueData": {
            "type": "object",
            "properties": {
                "infoId": {
                    "type": "string",
                    "description": "调用时的ID"
                },
                "clueId": {
                    "type": "string",
                    "description": "线索ID"
                },
                "userId": {
                    "type": "string",
                    "description": "用户ID"
                },
                "labelScore": {
                    "type": "number",
                    "description": "分数",
                    "format": "double"
                },
                "aiLabel": {
                    "type": "string",
                    "description": "意向度"
                },
                "profile": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户画像"
                    },
                    "description": "客户画像"
                },
                "objection": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户异议"
                    },
                    "description": "客户异议"
                },
                "actionItems": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "行动建议"
                    },
                    "description": "行动建议"
                },
                "aiAbstract": {
                    "type": "string",
                    "description": "摘要"
                },
                "summaryList": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "key": {
                                "type": "string"
                            },
                            "name": {
                                "type": "string"
                            },
                            "value": {
                                "type": "string"
                            },
                            "type": {
                                "type": "number",
                                "format": "long"
                            },
                            "sort": {
                                "type": "integer"
                            }
                        },
                        "x-apifox-orders": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ],
                        "required": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ]
                    },
                    "description": "提示词数据集合"
                },
                "intentionDegree": {
                    "type": "string",
                    "description": "成交意向等级"
                },
                "intentionAnalysis": {
                    "type": "string",
                    "description": "  成交意向等级分析"
                },
                "churnRisk": {
                    "type": "string",
                    "description": "流失风险等级"
                },
                "churnRiskAnalysis": {
                    "type": "string",
                    "description": "流失风险等级分析"
                }
            },
            "x-apifox-orders": [
                "infoId",
                "clueId",
                "userId",
                "labelScore",
                "aiLabel",
                "profile",
                "objection",
                "actionItems",
                "aiAbstract",
                "summaryList",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ],
            "description": "线索回调信息",
            "required": [
                "infoId",
                "clueId",
                "userId",
                "labelScore",
                "aiLabel",
                "summaryList",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ]
        }
    },
    "required": [
        "status",
        "message",
        "taskId",
        "data",
        "taskType",
        "clueData"
    ],
    "x-apifox-orders": [
        "status",
        "message",
        "taskId",
        "data",
        "callbackInfo",
        "taskType",
        "clueData"
    ]
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '沟通记录上传中传入的callbackUrl地址' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type": "object",
    "properties": {
        "message": {
            "type": "string",
            "description": "成功或失败原因"
        },
        "data": {
            "type": "object",
            "properties": {
                "sopFinish": {
                    "type": "boolean",
                    "description": "SOP是否完成"
                },
                "callAnalysis": {
                    "type": "object",
                    "properties": {
                        "recordUrl": {
                            "type": "string",
                            "description": "录音地址"
                        },
                        "aiLabel": {
                            "type": "integer",
                            "description": "意向度"
                        },
                        "aiLabelName": {
                            "type": "string",
                            "description": "意向度名字"
                        },
                        "duration": {
                            "type": "integer",
                            "description": "时长"
                        },
                        "callee": {
                            "type": "string",
                            "description": "主叫"
                        },
                        "caller": {
                            "type": "string",
                            "description": "被叫"
                        }
                    },
                    "required": [
                        "recordUrl",
                        "aiLabel",
                        "aiLabelName",
                        "duration"
                    ],
                    "x-apifox-orders": [
                        "recordUrl",
                        "aiLabel",
                        "aiLabelName",
                        "duration",
                        "callee",
                        "caller"
                    ],
                    "description": "基本信息"
                },
                "interruptCustomers": {
                    "type": "integer",
                    "description": "打断客户次数"
                },
                "asrResult": {
                    "type": "object",
                    "properties": {
                        "asrResult": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "role": {
                                        "type": "string",
                                        "description": "本句的角色,取值:客服、客户。"
                                    },
                                    "words": {
                                        "type": "string",
                                        "description": "对话内容"
                                    },
                                    "end": {
                                        "type": "integer",
                                        "description": "本句相对于整个对话的结束时间,单位:毫秒。"
                                    },
                                    "begin": {
                                        "type": "integer",
                                        "description": "本句相对于整个对话的开始时间,单位:毫秒。"
                                    }
                                },
                                "required": [
                                    "role",
                                    "words",
                                    "end",
                                    "begin"
                                ],
                                "x-apifox-orders": [
                                    "role",
                                    "words",
                                    "end",
                                    "begin"
                                ]
                            }
                        }
                    },
                    "required": [
                        "asrResult"
                    ],
                    "x-apifox-orders": [
                        "asrResult"
                    ],
                    "description": "文件转写结果。"
                },
                "abuseCustomers": {
                    "type": "integer",
                    "description": "辱骂客户次数"
                },
                "hitResult": {
                    "type": "object",
                    "properties": {
                        "hitResult": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "properties": {
                                    "hits": {
                                        "type": "object",
                                        "properties": {
                                            "hit": {
                                                "type": "array",
                                                "items": {
                                                    "type": "object",
                                                    "properties": {
                                                        "keyWords": {
                                                            "type": "object",
                                                            "properties": {
                                                                "keyWord": {
                                                                    "type": "array",
                                                                    "items": {
                                                                        "type": "object",
                                                                        "properties": {
                                                                            "val": {
                                                                                "type": "string",
                                                                                "description": "命中话题的部分句子"
                                                                            },
                                                                            "from": {
                                                                                "type": "integer",
                                                                                "description": "关键字的起始位置。"
                                                                            },
                                                                            "to": {
                                                                                "type": "integer",
                                                                                "description": "关键字的结束位置。"
                                                                            }
                                                                        },
                                                                        "required": [
                                                                            "val",
                                                                            "from",
                                                                            "to"
                                                                        ],
                                                                        "x-apifox-orders": [
                                                                            "val",
                                                                            "from",
                                                                            "to"
                                                                        ]
                                                                    }
                                                                }
                                                            },
                                                            "required": [
                                                                "keyWord"
                                                            ],
                                                            "x-apifox-orders": [
                                                                "keyWord"
                                                            ],
                                                            "description": "命中的关键字"
                                                        },
                                                        "phrase": {
                                                            "type": "object",
                                                            "properties": {
                                                                "role": {
                                                                    "type": "string",
                                                                    "description": "本句的角色,取值:客服、客户。"
                                                                },
                                                                "words": {
                                                                    "type": "string",
                                                                    "description": "对话内容"
                                                                },
                                                                "end": {
                                                                    "type": "integer",
                                                                    "description": "本句相对于整个对话的结束时间,单位:毫秒。"
                                                                },
                                                                "begin": {
                                                                    "type": "integer",
                                                                    "description": "本句相对于整个对话的开始时间,单位:毫秒。"
                                                                }
                                                            },
                                                            "required": [
                                                                "role",
                                                                "words",
                                                                "end",
                                                                "begin"
                                                            ],
                                                            "x-apifox-orders": [
                                                                "role",
                                                                "words",
                                                                "end",
                                                                "begin"
                                                            ]
                                                        }
                                                    },
                                                    "x-apifox-orders": [
                                                        "keyWords",
                                                        "phrase"
                                                    ]
                                                }
                                            }
                                        },
                                        "required": [
                                            "hit"
                                        ],
                                        "x-apifox-orders": [
                                            "hit"
                                        ],
                                        "description": "话题命中"
                                    },
                                    "name": {
                                        "type": "string",
                                        "description": "命中的话题名称。"
                                    }
                                },
                                "x-apifox-orders": [
                                    "hits",
                                    "name"
                                ]
                            }
                        }
                    },
                    "required": [
                        "hitResult"
                    ],
                    "x-apifox-orders": [
                        "hitResult"
                    ],
                    "description": "话题命中结果"
                },
                "speechSpeed": {
                    "type": "number",
                    "description": "语速",
                    "format": "double"
                },
                "infoId": {
                    "type": "string",
                    "description": "调用时的ID"
                },
                "callbackInfo": {
                    "type": "string",
                    "description": "回调时附加信息"
                },
                "speechScale": {
                    "type": "number",
                    "description": "说话占比",
                    "format": "double"
                },
                "notFinishSopName": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    },
                    "description": "未完成的SOP名字"
                },
                "finishSopName": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    },
                    "description": "完成的SOP名字"
                },
                "profile": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户画像"
                    },
                    "description": "客户画像",
                    "deprecated": true
                },
                "objection": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户异议"
                    },
                    "description": "客户异议",
                    "deprecated": true
                },
                "actionItems": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "行动建议"
                    },
                    "description": "行动建议",
                    "deprecated": true
                },
                "customerPainPoint": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户痛点",
                        "deprecated": true
                    },
                    "description": "客户痛点",
                    "deprecated": true
                },
                "aiAbstract": {
                    "type": "string",
                    "description": "摘要",
                    "deprecated": true
                },
                "labelScore": {
                    "type": "number",
                    "format": "double",
                    "description": "意向分"
                },
                "summaryList": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "key": {
                                "type": "string",
                                "description": "字段key"
                            },
                            "name": {
                                "type": "string",
                                "description": "字段名称"
                            },
                            "value": {
                                "type": "string",
                                "description": "字段值"
                            },
                            "type": {
                                "type": "number",
                                "description": "字段类型 0字符串 1数组",
                                "format": "long"
                            },
                            "sort": {
                                "type": "integer",
                                "description": "序号"
                            }
                        },
                        "x-apifox-orders": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ],
                        "required": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ]
                    },
                    "description": "提示词数据集合"
                },
                "sopDescribe": {
                    "type": "string",
                    "description": "sop描述"
                },
                "speechSpeedDescribe": {
                    "type": "string",
                    "description": "语速描述"
                },
                "abuseCustomersDescribe": {
                    "type": "string",
                    "description": "辱骂客户描述"
                },
                "interruptCustomersDescribe": {
                    "type": "string",
                    "description": "打断客户描述"
                },
                "intentionDegree": {
                    "type": "string",
                    "description": "成交意向等级"
                },
                "intentionAnalysis": {
                    "type": "string",
                    "description": "成交意向等级分析"
                },
                "churnRisk": {
                    "type": "string",
                    "description": "流失风险等级"
                },
                "churnRiskAnalysis": {
                    "type": "string",
                    "description": "流失风险等级分析"
                },
                "speechScaleDescribe": {
                    "type": "string",
                    "description": "说话占比描述"
                }
            },
            "required": [
                "sopFinish",
                "callAnalysis",
                "aiAbstract",
                "interruptCustomers",
                "asrResult",
                "abuseCustomers",
                "hitResult",
                "speechSpeed",
                "infoId",
                "callbackInfo",
                "speechScale",
                "notFinishSopName",
                "finishSopName",
                "profile",
                "objection",
                "actionItems",
                "labelScore",
                "summaryList",
                "sopDescribe",
                "speechScaleDescribe",
                "speechSpeedDescribe",
                "abuseCustomersDescribe",
                "interruptCustomersDescribe",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ],
            "x-apifox-orders": [
                "sopFinish",
                "callAnalysis",
                "aiAbstract",
                "profile",
                "objection",
                "actionItems",
                "customerPainPoint",
                "interruptCustomers",
                "asrResult",
                "abuseCustomers",
                "hitResult",
                "speechSpeed",
                "infoId",
                "callbackInfo",
                "speechScale",
                "notFinishSopName",
                "finishSopName",
                "labelScore",
                "summaryList",
                "sopDescribe",
                "speechScaleDescribe",
                "speechSpeedDescribe",
                "abuseCustomersDescribe",
                "interruptCustomersDescribe",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ]
        },
        "status": {
            "type": "integer",
            "description": "任务状态 1进行中 2成功 3失败(回调时只有 2 和 3)"
        },
        "taskId": {
            "type": "string",
            "description": "任务ID"
        },
        "callbackInfo": {
            "type": "string",
            "description": "回调时附加信息"
        },
        "taskType": {
            "type": "integer",
            "description": "1通话 2线索"
        },
        "clueData": {
            "type": "object",
            "properties": {
                "infoId": {
                    "type": "string",
                    "description": "调用时的ID"
                },
                "clueId": {
                    "type": "string",
                    "description": "线索ID"
                },
                "userId": {
                    "type": "string",
                    "description": "用户ID"
                },
                "labelScore": {
                    "type": "number",
                    "description": "分数",
                    "format": "double"
                },
                "aiLabel": {
                    "type": "string",
                    "description": "意向度"
                },
                "profile": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户画像"
                    },
                    "description": "客户画像"
                },
                "objection": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "客户异议"
                    },
                    "description": "客户异议"
                },
                "actionItems": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "description": "行动建议"
                    },
                    "description": "行动建议"
                },
                "aiAbstract": {
                    "type": "string",
                    "description": "摘要"
                },
                "summaryList": {
                    "type": "array",
                    "items": {
                        "type": "object",
                        "properties": {
                            "key": {
                                "type": "string"
                            },
                            "name": {
                                "type": "string"
                            },
                            "value": {
                                "type": "string"
                            },
                            "type": {
                                "type": "number",
                                "format": "long"
                            },
                            "sort": {
                                "type": "integer"
                            }
                        },
                        "x-apifox-orders": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ],
                        "required": [
                            "key",
                            "name",
                            "value",
                            "type",
                            "sort"
                        ]
                    },
                    "description": "提示词数据集合"
                },
                "intentionDegree": {
                    "type": "string",
                    "description": "成交意向等级"
                },
                "intentionAnalysis": {
                    "type": "string",
                    "description": "  成交意向等级分析"
                },
                "churnRisk": {
                    "type": "string",
                    "description": "流失风险等级"
                },
                "churnRiskAnalysis": {
                    "type": "string",
                    "description": "流失风险等级分析"
                }
            },
            "x-apifox-orders": [
                "infoId",
                "clueId",
                "userId",
                "labelScore",
                "aiLabel",
                "profile",
                "objection",
                "actionItems",
                "aiAbstract",
                "summaryList",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ],
            "description": "线索回调信息",
            "required": [
                "infoId",
                "clueId",
                "userId",
                "labelScore",
                "aiLabel",
                "summaryList",
                "intentionDegree",
                "intentionAnalysis",
                "churnRisk",
                "churnRiskAnalysis"
            ]
        }
    },
    "required": [
        "status",
        "message",
        "taskId",
        "data",
        "taskType",
        "clueData"
    ],
    "x-apifox-orders": [
        "status",
        "message",
        "taskId",
        "data",
        "callbackInfo",
        "taskType",
        "clueData"
    ]
}'

返回响应

🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2024-10-25 03:49:49
上一页
AI分析录音回调
下一页
录音上传分析
Built with