GET /intelligence/{accountName}/anomaly/settings
Retrieves Anomaly Detection settings for an account ID.
See also:
Activate Anomaly Detection
Reset Anomaly Detection Parameters
GET https://thingspace.verizon.com/api/m2m/v1/intelligence/{accountName}/anomaly/settings
Parameter Name | Data Type | Description |
---|---|---|
accountName required |
string | The name of a billing account. An account name is usually numeric, and must include any leading zeros. |
The request header must contain a current ThingSpace authorization bearer token and a valid VZ-M2M session token, and must set the content-type to JSON.
Parameter Name | Data Type | Description |
---|---|---|
Authorization required |
string | HTTP Authorization bearer token. |
VZ-M2M-Token required |
string | A valid session token returned by POST /session/login. |
Content-Type required |
string | Must be application/json . |
Parameter Name | Data Type | Description |
---|---|---|
accountName |
string | Indicates if the account name used has Anomaly Detection.
|
sensitivityParameter | object | The initial values and monitoring state for abnormal and very abnormal. |
|
string | The maximum value of the threshold in the units being measured. |
sensitivityParameter.enableAbnormal |
boolean | If abnomal values are being monitored.
|
sensitivityParameter.enableVeryAbnormal |
boolean | If very abnomal values are being monitored.
|
sensitivityParameter.veryAbnormalMaxValue |
string | The maximum value of the threshold in the units being measured. |
status |
string | Indicates if Anomaly Detection is active on the account
|
Status 200
Example Success Response:
{
"accountName": "Success",
"sensitivityParameter": [
{
"abnormalMaxValue": 1.1,
"enableAbnormal": true,
"enableVeryAbnormal": true,
"veryAbnormalMaxValue": 0.55
}
],
"status": "Active"
}
Status 400
All error messages are returned in this format:
{
"errorCode": "error code string",
"errorMessage": "error message string"
}
Error codes and messages are listed on the Error Messages page, along with explanations and suggestions for corrective actions.