v1

latestOpenAPI 3.0.02026-07-249372139.7 KB
Metrics

Get all Metrics Values for a System

Returns Metric values for all Enabled Metrics for a given System ID, Metrics must have "display" set to enabled to show in the response

post/metrics/evaluate/systems

Request body

Systemsinteger[] required

Example request

{
  "Systems": [
    1241
  ],
  "Pagination": {
    "Page": 1,
    "PageSize": 25
  }
}

Response

Success

Successboolean

Example response

{
  "Success": true,
  "Data": [
    {
      "FriendlyName": "Active Directory - Contoso",
      "InspectorName": "active-directory-inspector",
      "EnvironmentName": "Contoso Nation",
      "MetricUUID": "aa4eef4d-3dc5-4b3d-9d8a-00c1d9b68065",
      "MetricName": "Active Directory: Count of Joined Computers",
      "TimelineDate": "2021-07-21T14:52:57.022Z",
      "Value": 5
    }
  ],
  "Pagination": {
    "TotalRows": 1,
    "CurrentPage": 1,
    "TotalPages": 1,
    "PageSize": 25
  }
}