Settings
put__settings_authentication
Code samples
PUT /settings/authentication HTTP/1.1
Content-Type: application/json-patch+json
Accept: application/json
PUT /settings/authentication
Enable/disable two factor authentication.
Body parameter
{
"EnableMultifactorAuthentication": true
}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
async | query | boolean | false | none |
uncommitAndAggregateId | query | string | false | none |
body | body | SettingsAuthentication | false | none |
Example responses
200 Response
"string"
400 Response
"string"
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Success | string |
400 | Bad Request | Bad Request | string |
put__settings_capacity_units
Code samples
PUT /settings/capacity_units HTTP/1.1
Content-Type: application/json-patch+json
Accept: application/json
PUT /settings/capacity_units
Change the capacity units used for drives, volumes and statistics.
Body parameter
{
"BinaryUnits": true,
"DecimalUnits": true
}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
async | query | boolean | false | none |
uncommitAndAggregateId | query | string | false | none |
body | body | SettingsCapacityUnits | false | none |
Example responses
200 Response
"string"
400 Response
"string"
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Success | string |
400 | Bad Request | Bad Request | string |
put__settings_anomaly_detection_edit
Code samples
PUT /settings/anomaly_detection/edit HTTP/1.1
Content-Type: application/json-patch+json
Accept: application/json
PUT /settings/anomaly_detection/edit
Update anomaly detection settings.
Body parameter
{
"Timeframe_days": 0,
"ChangeInPercentage": 0.1
}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
async | query | boolean | false | none |
uncommitAndAggregateId | query | string | false | none |
body | body | SettingsAnomalyDetectionEdit | false | none |
Example responses
200 Response
"string"
400 Response
"string"
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Success | string |
400 | Bad Request | Bad Request | string |
get__settings_anomaly_detection_show
Code samples
GET /settings/anomaly_detection/show HTTP/1.1
Accept: application/json
GET /settings/anomaly_detection/show
Display anomaly detection settings.
Example responses
200 Response
{
"TimeframeDays": 0,
"AbnormalChangePercentage": 0.1
}
400 Response
"string"
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Success | AnomalyDetectionSettingsResult |
400 | Bad Request | Bad Request | string |
No Comments