API Guide

Table Of Contents
/api/ApplicationService/Network/WebServerConfiguration
This URI represents the web-server configuration.
GET method for WebServerConfiguration
This method returns the web server configuration, including the status, port number, and session timeout duration.
Description Returns the web-server configuration, including the status of the web server, port number, and session
timeout duration.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "$metadata#Network.WebServerConfiguration/$entity",
"@odata.id": "/api/ApplicationService/Network/WebServerConfiguration",
"TimeOut": 30,
"PortNumber": 443,
"EnableWebServer": true
}
PUT method for WebServerConfiguration
This method updates the web-server configuration.
Description
Updates the web-server configuration. To apply the changes, the web services restart.
Privilege APPLIANCE_SETUP
HTTP response
codes
200
Example request
body
{
"TimeOut": 4,
"PortNumber": 8778,
"EnableWebServer": true
}
Example
response body
{
"@odata.context": "$metadata#Network.WebServerConfiguration/$entity",
"@odata.id": "/api/ApplicationService/Network/WebServerConfiguration",
"TimeOut": 30,
"PortNumber": 443,
"EnableWebServer": true
}
Table 10. Attributes
Attribute name Description
TimeOut Session time Duration
PortNumber Port number of the web server configurations
EnableWebServer Status of web server
Application settings 33