GET   checks/generic/{checkId}/results/{resultId}

Gets a json that contains generic check result data.

URL Parameters

NameDescription
checkId

Check identifier. Type: numeric.

resultId

Check result identifier. Type: GUID.

Remarks

The default context for the route is the user context. To enable customer context (if it's allowed for the user) use the request query parameter customer_context=1.

Request example

Response body model example and description

{
  "attempts": 1,
  "result_code": 1,
  "timestamp_utc": "2026-05-13T03:44:06",
  "severity": "sample string 3",
  "value": 1,
  "resultId": "1555909a-8605-4b82-b38d-ab842a61c085",
  "result": {}
}
NameType Description
attemptsInteger

The number of attempts.

result_codeInteger

The result code.

timestamp_utcDateTime

The result timestamp in UTC.

severityString

The result severity.

valueInteger

The result value.

resultIdGuid

The result identifier.

resultObject

The custom result data in json format.