POST /api/v0.0.1/wakeupcall/create?token={token}&type={type}
参数 | 是否必选 | 类型 | 描述 |
number | 是 | String |
分机号码。 取值范围:
例如:“number”:“110”
例如:“number”:“110,111” |
time | 是 | String | 闹铃时间。 |
type | 是 | String |
闹铃类型。 取值范围:
当闹铃完成设置的重复次数之后,该条闹铃将被自动删除。
type 为 custom 时,weekdays 不为空。 |
weekdays | 否 | Integer |
闹铃适用的星期。 取值范围:0~6。其中,0表示周日,1-6表示周一到周六。注: type 为 custom 时,此项不为空。 |
prompt | 否 | String |
闹铃提示音。 此提示音必须为自定义提示音。 |
参数 | 类型 | 描述 |
status | String |
请求结果。
|
请求示例
为分机106添加闹铃。
POST /api/v0.0.1/wakeupcall/create?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
"number":"106",
"type":"custom",
"time":"15:55",
"weekdays":"0,1,2,3,5",
"prompt":"custom/test"
}
响应示例
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"
}
HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
<?xml version="1.0" encoding="utf-8"?>
<xml>
<status>Success</status>
</xml>