说明: 查询指定语音应用下已创建的话机。
参数 | 说明 | 是否必填 | 类型 |
---|---|---|---|
current |
当前页码,1-N,默认1,不可传空 |
是 |
Int |
size |
每页显示数,1-100,默认25,不可传空 |
是 |
Int |
params |
分页参数 |
是 |
JSONObject |
appId |
语音应用id |
是 |
String |
https://api.onbuka.com/v3/voice/sipQuery
RequestURL:
https://api.onbuka.com/v3/voice/sipQuery
RequestMethod:
POST
RequestHeaders:
Content-Type:application/json;charset=UTF-8
Sign:05d7a50893e22a5c4bb3216ae3396c7c
Timestamp:1630468800
Api-Key:bDqJFiq9
RequestBody:
{
"current":1,
"size":10,
"params":{
"appId":"4luaKsL2"
}
}
参数 | 说明 | 类型 |
---|---|---|
status |
状态码,0成功,其他失败参见状态码说明 |
String |
reason |
失败原因说明 |
String |
data |
分页数据 |
JSONObject |
total |
总记录条数 |
Int |
size |
每页显示数 |
Int |
current |
当前页码 |
Int |
pages |
总页码 |
Int |
records |
数据集合 |
JSONArray |
groupName |
话机组名称 |
String |
phoneName |
话机名称 |
String |
account |
话机账号 |
String |
password |
话机密码 |
String |
displayNum |
话机显示号码 |
String |
{
"status": "0",
"reason":" success",
"data": {
"total": 5,
"size": 20,
"current": 1,
"pages": 1,
"records":[
{
"groupName":"sipGroup",
"phoneName":"sip-1",
"account":"test_001",
"password":"LX9FZdF2",
"displayNum":"861000000"
}
]
}
}