Skip to content

Get room status#

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

Example call:

https://192.168.0.240/app_hotel_get?id=7382

Info

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

Response type Possible content
checkedIn 0 hotel room available (check-out is done)
1 hotel room occupied (check-in has been completed)
checkinId 0 hotel room available (check-out is done)
1...65535 (system-wide) continuous checkinId
checkinDate date of last check-in (format: "yymmddhhmm")
exchangeLine 0 incoming calls only
1 incoming and outgoing calls possible
locked 0 room is locked
1 room is available
cleaned 0 room must be cleaned
1 room is cleaned
charges accrued call charges in hundredths
chargesFormatted formatted string of the incurred call charges
Example response
[
        {
                "checkedIn": 1,
                "checkinId": "20965",
                "checkinDate": "1804171413",
                "exchangeLine": 1,
                "locked": 0,
                "cleaned": 1,
                "charges": 2250,
                "chargesFormatted": "22.50 €"
        },
        {
                ...
        }
]