Skip to content

Get wake-up times#

Function call (URL) Permissions Possible parameters
/app_hotel_wakeup_list admin / sub-admin id: unique ID of the hotel participant / room

Example call:

https://192.168.0.240/app_hotel_wakeup_list?id=7382

Info

In order to use this function, the Hotel User function must be activated.

Response type Possible content
id unique number of the set alarm time
zeit alarm time, specified in hh:mm.
tag indicate the day or days: 1 Monday, 2 Tuesday, 4 Wednesday, 8 Thursday, 16 Friday, 32 Saturday, 64 Sunday, 31 Monday through 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 phone: 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
 }
]