System
Retrieve the System settings
Query parameters
siteIdinteger · int32Optional
Responses
200
Success
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/SystemSettings HTTP/1.1
Host:
Accept: */*
{
"cepEnabled": true,
"resetIdleSessionAfterMins": 1
}
Modify System Settings. For each setting, the request has a corresponding parameter. To modify a setting, specify a matching parameter and its value.
Query parameters
siteIdinteger · int32Optional
Site ID
Body
helpdeskEnabledboolean | nullableOptionalDeprecated
RAS Helpdesk: Enable (True) or disable (False).
helpdeskEmailstring | nullableOptionalDeprecated
RAS Helpdesk email.
cepEnabledboolean | nullableOptional
Customer Experience Program: Enable (True) or disable (False).
httpProxyModestring · enumOptionalPossible values:
HTTP Proxy Mode
httpProxyAddressstring | nullableOptionalDeprecated
HTTP Proxy Address.
httpProxyPortinteger · int32 | nullableOptionalDeprecated
A custom Proxy port number.
httpProxyPwdstring | nullableOptionalDeprecated
HTTP Proxy Password.
httpProxyUserstring | nullableOptionalDeprecated
HTTP Proxy User.
httpProxyRequiresAuthboolean | nullableOptionalDeprecated
HTTP Proxy Requires Authentication: Enable (True) or disable (False).
resetIdleSessionAfterMinsinteger · int32 | nullableOptional
Reset RAS Console Idle session after (minutes).
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
put
PUT /api/SystemSettings HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 102
{
"cepEnabled": true,
"httpProxyMode": [
"0 = NoProxy",
"1 = ManualSettings"
],
"resetIdleSessionAfterMins": 1
}
No content
Was this helpful?