3.2 Application
Getting current settings
Get the Application settings.
URL: | https://{{ip_addr}}/api/v1/application |
HTTP method: | GET |
Response code: | Standard HTTP response code, treating syntactic errors. |
Response data: | {
"data": {
"isInstallationAllowed": false,
"isReturnToApplicationOnCallEndAllowed": false
}
}
|
Section configuration
Set the values in the Application section.
URL: | https://{{ip_addr}}/api/v1/application |
HTTP method: | PUT |
Response code: | Standard HTTP response code, treating syntactic errors.
|
| Request body: | {
"applicationToRunAtStart":{
"id":"",
"installDate":"",
"name":"None",
"version":""
},
"isInstallationAllowed":false,
"isReturnToApplicationOnCallEndAllowed":false,
"urlToRunAtStart":""
}
|
Response data: | {
"data": {
"applicationToRunAtStart": {
"id": "",
"installDate": "",
"name": "None",
"version": ""
},
"isInstallationAllowed": false,
"isReturnToApplicationOnCallEndAllowed": false,
"urlToRunAtStart": ""
}
}
|
List of available applications
Get a list of available applications.
URL: | https://{{ip_addr}}/api/v1/application/applications |
HTTP method: | GET |
Response code: | Standard HTTP response code, treating syntactic errors.
|
Response data: | {
"data": {
"applications": [
{
"id": "",
"installDate": "",
"name": "None",
"version": ""
},
{
"id": "com.axis.acc",
"installDate": "1/1/09",
"name": "Companion 3",
"version": "3.12.15 (167)"
},
{
"id": "com.axis.acs",
"installDate": "1/1/09",
"name": "Camera Station",
"version": "1.13.18 (144)"
},
{
"id": "com.android.music",
"installDate": "1/1/09",
"name": "Music",
"version": "6.0.1 (23)"
},
{
"id": "com.android.documentsui",
"installDate": "1/1/09",
"name": "File Manager",
"version": "6.0.1"
},
{
"id": "com.android.deskclock",
"installDate": "1/1/09",
"name": "Clock",
"version": "4.1.0 (410)"
},
{
"id": "com.android.gallery3d",
"installDate": "1/1/09",
"name": "Gallery",
"version": "1.1.40030 (40030)"
},
{
"id": "com.android.calculator2",
"installDate": "1/1/09",
"name": "Calculator",
"version": "6.0.1 (23)"
},
{
"id": "com.adobe.reader",
"installDate": "1/1/09",
"name": "Adobe Acrobat",
"version": "19.0.0.8512 (1900008512)"
},
{
"id": "com.android.browser",
"installDate": "1/1/09",
"name": "Browser",
"version": "6.0.1 (23)"
},
{
"id": "cz.nn.helios_mobile",
"installDate": "1/1/09",
"name": "2N® IP Mobile",
"version": "4.4.6 (474)"
}
]
}
}
|
