/config/display/screen/registers

The configuration of the registers screen - a screen that cycles through a list of registers, displaying their values.

Get /config/display/screen/registers

SecurityApiKey
Request
query Parameters
max-depth
integer >= 1

Limit output depth of the response. See Max-Depth.

Example: max-depth=2
filter
string

Response filter string. See Filter-Spec.

Example: filter={foo,bar}
Responses
200

Normal response.

401

Unauthorized response.

get/config/display/screen/registers
Request samples
Response samples
application/json
{
  • "result": {
    },
  • "error": "Error message (present if an error occurred)."
}

Replace /config/display/screen/registers

SecurityApiKey
Request
Request Body schema: application/json
name*
additional property
string (configDisplayScreenRegistersName)

Specifies how the named register is to be displayed. The following characters may appear in this string:

  • i: The instantaneous (rate of change) value of the register should be displayed.

  • c: The accumulated (cumulative) value of the register should be displayed.

Note that an empty string imples that the register is not displayed at all

For the special keyword .default, this establishes how registers should be displayed that are not mentioned otherwise.

Responses
200

Normal response.

401

Unauthorized response.

put/config/display/screen/registers
Request samples
application/json
{
  • "name1": "ic",
  • "name2": "ic"
}
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}

Update /config/display/screen/registers

SecurityApiKey
Request
Request Body schema: application/json
name*
additional property
string (configDisplayScreenRegistersName)

Specifies how the named register is to be displayed. The following characters may appear in this string:

  • i: The instantaneous (rate of change) value of the register should be displayed.

  • c: The accumulated (cumulative) value of the register should be displayed.

Note that an empty string imples that the register is not displayed at all

For the special keyword .default, this establishes how registers should be displayed that are not mentioned otherwise.

Responses
200

Normal response.

401

Unauthorized response.

post/config/display/screen/registers
Request samples
application/json
{
  • "name1": "ic",
  • "name2": "ic"
}
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}

Delete /config/display/screen/registers

Reset to empty (no registers displayed).

SecurityApiKey
Responses
200

Normal response.

401

Unauthorized response.

delete/config/display/screen/registers
Request samples
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}