Felink API文档
简要描述
请求URL
请求方式
请求参数
参数名 必选 类型 说明
apiKey string ApiKey
nonce string 随机字符串
timestamp string 时间戳(秒)
sign string 签名
extensionNumber string 分机号码
calledNumber string 被叫号码
callbackUrl string 回调地址
customData string 自定义数据 (长度不超过255)
prefix string 字冠号(机器人编号/队列编号/IVR语音菜单编号)
请求示例
{
"nonce": "iGJASoKL",
"timestamp": "1649828681",
"apiKey": "a4s690Kx2W5U0Gu2",
"sign": "f6c2b273a7ecde42767c726d580a52c0",
"extensionNumber": "11111111",
"calledNumber": "15221218185",
"callbackUrl": "http://localhost:5000/test",
"customData": "{\"id\":1,\"name\":\"张三\"}",
"prefix": "2014"
}
响应参数
参数名 类型 说明
taskId string 记录编号
响应示例
{
"code": 0,
"status": true,
"message": "呼叫成功",
"data": {
"taskId": "3979aa0d8f534af5bf009e3ed9c1445f"
}
}