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": "2024-09-27T22:22:28",
  "severity": "sample string 3",
  "value": 1,
  "resultId": "22dce26f-6259-459a-a2a6-720dda9c2a75",
  "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.