Skip to content

Data Owner / Anomaly Detection Config

Reference for the data_owner/anomaly_detection_config endpoints of the Surfmeter API.

Surfmeter API – Data Owner / Anomaly Detection Config v1

The Surfmeter API lets you manage clients, users, capabilities, measurements, and organization-wide settings programmatically.


Servers

Description URL
https://surfmeter-server.{host}/client_admin_api/v1 https://surfmeter-server.{host}/client_admin_api/v1

Data Owner / Anomaly Detection Config


GET /data_owner/anomaly_detection_config

Input parameters

Parameter In Type Default Nullable Description
ApiKeyAuth header string N/A No API key used on every request. Create keys in the Surfmeter Dashboard under Keys → Surfmeter API Keys.

Response 200 OK

{
    "anomaly_detection_config": {
        "enabled": true,
        "bootstrap_status": "bootstrapping"
    }
}
⚠️ This example has been generated automatically from the schema and it is not accurate. Refer to the schema for more information.

Schema of the response body
{
    "description": "Response for data owner anomaly detection config show action",
    "type": "object",
    "required": [
        "anomaly_detection_config"
    ],
    "properties": {
        "anomaly_detection_config": {
            "type": "object",
            "required": [
                "enabled"
            ],
            "properties": {
                "enabled": {
                    "type": "boolean",
                    "description": "Whether anomaly detection is active for this data owner."
                },
                "bootstrap_status": {
                    "type": "string",
                    "enum": [
                        "bootstrapping",
                        "active",
                        null
                    ],
                    "description": "Bootstrap phase of the detector. Null when not yet initialized.",
                    "nullable": true
                }
            }
        }
    }
}

Schemas

AnomalyDetectionConfigShowResponse

Name Type
anomaly_detection_config Properties: enabled, bootstrap_status

Security schemes

Name Type Scheme Description
ApiKeyAuth apiKey API key used on every request. Create keys in the Surfmeter Dashboard under Keys → Surfmeter API Keys.