SolarWinds · Example Payload

Solarwinds Listchecks Example

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Solarwinds Listchecks Example is an example object payload from SolarWinds, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listChecks",
  "method": "GET",
  "path": "/checks",
  "summary": "Solarwinds List All Checks",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listchecks200Example",
      "example": {
        "checks": [
          {
            "id": "abc123",
            "name": "Example Title",
            "type": "http",
            "hostname": "example_value",
            "status": "up",
            "resolution": 10,
            "lastresponsetime": 10,
            "lasttesttime": 10,
            "created": 10,
            "tags": {}
          }
        ],
        "counts": {
          "total": 10,
          "limited": 10,
          "filtered": 10
        }
      }
    }
  ]
}