AI外呼任务通话人工意向变更回调接口
对接此接口前请先阅读文档"回调说明(新)"
# 1、接口描述
AI外呼任务通话人工意向变更回调接口。当一通通话编辑或更新了人工意向分类时触发。
# 2、输出参数
| 参数名 | 类型 | 描述 | 示例 |
|---|---|---|---|
| dataType | String | 回调类型(固定值) | MANUAL_INTENT_CHANGE |
| data | Object | ||
| +callOutJobId | Long | 任务id | 31545 |
| +callOutRecordId | Long | 通话记录id | 1164380259 |
| +intentLevelTagId | Long | 意向分组id | 928 |
| +intentLevelCode | Integer | 意向标签code | 5 |
| +intentLevelName | String | 意向标签名称 | F(无需跟进) |
| +properties | Map<String,String> | 自定义变量 | {"bxgender":"ces"} |
# 3、示例
输出示例:
{
"dataType":"MANUAL_INTENT_CHANGE",
"data": {
"callOutJobId":31545,
"callOutRecordId":1164380259,
"intentLevelTagId":928,
"intentLevelCode":5,
"intentLevelName":"F(无需跟进)",
"properties":{
"bxgender":"ces"
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
上次更新: 2026/8/4 16:21:47