getSystemSupportedFunction (v1.0)

Estimated reading time: 1 minute

This API provides the list of device capabilities within the scope of system service handling.

Syntax

http://<Base URL>/system

Authentication Level

none

Request

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

Response

result's Elements
An array of objects composed of the following pairs.
name type multiplicity default description
option string 1 Option name to identify the function.
  • "WOL" - If the server supports WOL, the MAC address is set as a value.
value string 1 Current value for each option. The value varies per option and the following value is defined.
  • (ex) "00:00:00:00:00:00:00:E0" (The MAC Address when the option value is "WOL".)
JSON Example
{
    "result": [[{
        "value": "00:00:00:00:00:00:00:E0",
        "option": "WOL"
    }]],
    "id": 55
}
Error Code
No additional error codes are defined. Refer to error code for common errors.

Appendix

Guide about Response

  • When the value of the option parameter is “WOL”, the value of the value parameter stores MAC addresses of active NICs.If this API is called via a wireless NIC, the value stores the MAC address of the wireless NIC.
Last modified: 6 Feb 2019