Robot Web Services
3HAC050973-001 Revision:M, Application Manual - Robot Web Services
Get Panel Actions

Returns the operations allowed on Panel.

URL

/rw/panel

Method

GET

URL Params

None

See Common URL parameters

Data Params

None

Success Response

HTTP_OK(200)

see HTTP Status codes

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>panel</title>
<base href= "http://localhost/" />
</head>
<body>
<div class="state">
form id="restart" method="post" action="rw/panel?action=restart">
<select name="restart-mode">
<option value="restart"/>
<option value="istart"/>
<option value="pstart"/>
<option value="bstart"/>
</select>
</form>
<form id="setlang" method="post" action="/rw/panel?action=setlang">
<input type="text" name="lang-code"/>
</form>
</div>
</body>
</html>

Actions

  • restart restart the controller
    • restart-mode modes are {restart | istart | pstart | bstart} Required
  • setlang Set controller language
    • lang-code=[alphanumeric] A valid language code such as en, sv, de etc. Required

Error Response

BAD_REQUEST(400)

See Robot controller return codes

Sample Call

curl --digest -u "Default User":robotics "http://localhost/rw/panel?action=show"

Notes

Not supported in bootserver mode