POST /api/v0.0.1/wakeupcall/query?token={token}&type={type}
参数 | 是否必选 | 类型 | 描述 |
number | 是 | String |
分机号码。 取值范围:
例如:“number”:“114”
例如:“number”:“110,114” |
注: 如果查询的分机没有闹铃信息,PBX 只响应请求成功或请求失败的参数。
参数 | 类型 | 描述 |
status | String |
请求结果。
|
wakeups | Array <WakeupInfo> | 闹铃列表。 |
WakeupInfo
参数 | 类型 | 描述 |
number | String | 分机号码。 |
wakeup | Array <ExtensionWakeup> | 分机闹铃信息列表。 |
ExtensionWakeup
参数 | 类型 | 描述 |
wakeupid | Integer | 闹铃的唯一 ID。 |
time | String | 闹铃时间。 |
type | String |
闹铃类型。
|
weekdays | Integer |
type 为 custom 时,闹铃适用的星期。
其中,0表示周日,1-6表示周一到周六。 |
prompt | String | 闹铃提示音。 |
请求示例
查询分机114的闹铃信息。
POST /api/v0.0.1/wakeupcall/query?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
"number":"114"
}
响应示例
HTTP/1.1 200 OK
Accept-Ranges: bytes
Connection: close
Content-Type: application/json
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
"status": "Success",
"wakeups": [
{
"number": "114",
"wakeup": [
{
"wakeupid": "10",
"type": "custom",
"weekdays": "0,1,2,3,5",
"time": "15:55",
"prompt": "custom/test"
}
]
}
]
}