Skip to content

Get call list#

Function call (URL) Permissions Possible parameters
/app_call_list user / sub-admin none

Example call:

https://192.168.0.240/app_call_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 caller list entry.
Note:
The IDs do not have to be consecutive, as they originate from the central call data collection and outgoing connections are also stored there.
extName Name of the caller, if call number or name is known. The name can come from the central telephone book, from the online name search or from the network (display message from the direction of the network operator).
extRufNr Phone number of the caller, if known.
datum Date of the call.
startZeit Time of the call.
msn Own called telephone number of the communications server.
Example response (2 missed calls)
[
 {
    "id": 8,
    "extName": "Auerswald",
    "extRufNr": "05306920099",
    "datum": "01.04.17",
    "startZeit": "12:44:59",
        "msn": "4711"
 },
 {
    "id": 7,
    "extName": "Auerswald",
    "extRufNr": "0530692000",
    "datum": "02.04.17",
    "startZeit": "12:10:29",
    "msn": "4711"
 }
]