Post方法,接收智齿科技发送过来的Json格式消息,在客户的服务器上部署,例如https://xxxxxxx.xxxxxx.com/sobot/message,建议所有的消息使用同一个地址。
无
用户Json格式如下表所示:
属性 | 必选 | 名称 | 数据类型 | 说明 | |
---|---|---|---|---|---|
companyId | M | 公司Id | String | 适用一个公司多个超管帐号或者多个分公司需要分别统计的情况 | |
staffEmail | M | 客服Email | String | ||
staffName | O | 客服姓名 | String | ||
customerPhoneNo | M | 客户手机号 | String | ||
customerName | O | 客户姓名 | String | ||
direction | M | 呼叫类型 | Integer | 呼入1,呼出0 | |
startTime | M | 通话开始时间 | Long | ||
endTime | M | 通话结束时间 | Long | ||
recordURL | M | 通话记录录音地址 | String | ||
入参示例如下所示:
{
"type": "calllog",
"content": [
{
"companyId": "5cc2c708202d4defaf72d4bcac362a55",
"staffEmail": "23234554@qq.com",
"staffName": "测试",
"customerPhoneNo": "13545777846",
"direction": 1,
"startTime": 1497519517482,
"endTime": 1497519531942,
"recordURL": "https://XXXXXX"
}
]
}
成功返回空字符串,报错返回错误信息。