Get alarms#
Function call (URL) | Permissions | Possible parameters |
---|---|---|
/app_wakeup_times_list | user / sub-admin | none |
Example call:
https://192.168.0.240/app_weckzeiten_list
Info
When logging in as "Admin", the web server returns an empty array, displayed as [].
Response type | Possible content |
---|---|
id | Unique number of the set alarm time. |
zeit | Alarm time, specified in hh:mm. |
tag | Specify the day or days: 1 Monday, 2 Tuesday, 4 Wednesday, 8 Thursday, 16 Friday, 32 Saturday, 64 Sunday, 31 Monday to Friday, 96 Saturday to Sunday, 127 daily |
aktiv | Shows whether the alarm time is on or off: 0 off, 1 on |
immer | Shows whether the alarm time is executed once or repeatedly: 0 once, 1 recurring |
fwProg | Shows whether the alarm time has been set by the subscriber telephone: 0 via web interface or API, 1 via programming function by telephone |
Example response
[
{
"id": 5070,
"zeit": "08:16",
"tag": 31,
"aktiv": 1,
"immer": 1,
"fwProg": 0
},
{
"id": 5813,
"zeit": "09:15",
"tag": 96,
"aktiv": 1,
"immer": 1,
"fwProg": 1
},
{
"id": 3358,
"zeit": "18:10",
"tag": 127,
"aktiv": 1,
"immer": 1,
"fwProg": 0
},
{
"id": 5872,
"zeit": "22:22",
"tag": 32,
"aktiv": 1,
"immer": 1,
"fwProg": 0
},
{
"id": 7463,
"zeit": "22:23",
"tag": 8,
"aktiv": 0,
"immer": 1,
"fwProg": 0
}
]