v2

latestOpenAPI 3.0.0SolarWinds Software Services Agreement2026-07-2167105153.0 KB
dem

Get test results

get/v1/dem/uris/{entityId}/testResults

Path parameters

entityIdstring required

Entity ID.

Query parameters

startTimestring date-time required

Start of timespan to get results for, inclusive

endTimestring date-time required

End of timespan to get results for, exclusive

direction'backward' | 'forward' | 'tail'

sort direction: 'backward' and 'tail' both sort from oldest to newest, 'forward' sorts from newest to oldest

minResponseinteger

Minimal result response time to return, inclusive, defaults to -1

maxResponseinteger

Maximal result response time to return, exclusive, defaults to infinity

probesstring

Ids of probes to return results from (comma-separated list). Defaults to all probes.

status'up' | 'down' | 'up,down'

Test result statuses to include. Defaults to all statuses

pageSizeinteger

Number of items in a response page. Default varies by API.

skipTokenstring

Token for the requested page.

Response

An array of test results with pagination info

Example response

{
  "results": [
    {
      "time": "2025-01-15T14:31:19.735Z",
      "probe": {
        "id": "probe-1",
        "name": "Washington",
        "active": true,
        "region": "NA",
        "country": "US",
        "city": "Washington D.C.",
        "coordinates": {
          "latitude": 38.89511,
          "longitude": -77.03637
        },
        "ipv4Addresses": [
          "34.232.5.40",
          "44.207.30.12"
        ],
        "ipv6Addresses": [
          "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
        ]
      },
      "monitor": {
        "id": "check-12345",
        "type": "http",
        "interval": 300,
        "executionType": "scheduled",
        "target": "https://www.solarwinds.com"
      },
      "responseTime": 376,
      "status": "up",
      "phase": "connection",
      "description": "Connection timeout",
      "message": "Connection timeout occurred while attempting to connect to the target server",
      "analysisId": "analysis-12345",
      "validationsId": "validation-67890"
    }
  ]
}