getApplicationStatusList (v1.0)

Estimated reading time: 1 minute

This API provides the status of the application itself or the accompanying status related to a specific application.

Syntax

http://<Base URL>/appControl

Authentication Level

none

Request

params' Elements
Not necessary.
JSON Example
{
    "method": "getApplicationStatusList",
    "id": 55,
    "params": [],
    "version": "1.0"
}

Response

result's Elements
An array of objects composed of the following pairs.
name type multiplicity default description
name string 1 Application name. The following values are defined.
  • "textInput" - software keyboard
  • "cursorDisplay" - application using a cursor
  • "webBrowse" - web browser
status string 1 Application status. The following values are defined.
  • "off" - application is inactive
  • "on" - application is active
JSON Example
{
    "result": [[
        {
            "name": "textInput",
            "status": "off"
        },
        {
            "name": "cursorDisplay",
            "status": "off"
        },
        {
            "name": "webBrowse",
            "status": "off"
        }
    ]],
    "id": 55
}
Error Code
No additional error codes are defined. Refer to error code for common errors.
Last modified: 6 Feb 2019