System

Get

get

Retrieve the System settings

Query parameters
siteIdinteger · int32Optional
Responses
200
Success
application/json; api-version=1.0
get
GET /api/SystemSettings HTTP/1.1
Host: 
Accept: */*
{
  "cepEnabled": true,
  "resetIdleSessionAfterMins": 1
}

Update

put

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 · enumOptional

HTTP Proxy Mode

Possible values:
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
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?