GET checks/{checkId}/results?fromUtc={fromUtc}&toUtc={toUtc}&detail_level={detail_level}&fromMillisecondsUtc={fromMillisecondsUtc}&toMillisecondsUtc={toMillisecondsUtc}
Gets check results between two dates.
URL Parameters
| Name | Description |
|---|---|
| checkId | Check identifier. Type: numeric. |
| fromUtc | Timestamp in UTC format. Example: 2013-08-20T13:32:08. |
| toUtc | Timestamp in UTC format. Example: 2013-08-20T13:32:08. |
| detail_level | Result detalization level. Allowed values: 0, 1. Default value: 0. |
| fromMillisecondsUtc | Timestamp represented as a UNIX Epoch timestamp (millisecs after 1970). Type: numeric. Example: 1376980667000. |
| toMillisecondsUtc | Timestamp represented as a UNIX Epoch timestamp (millisecs after 1970). Type: numeric. Example: 1376980667000. |
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.Responses
Request example
Response body model examples and descriptions
When result detalization level is 0
[
{
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "F",
"value": 23454,
"unit": "ms"
},
{
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "W",
"value": 4637,
"unit": "byte"
},
{
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "F",
"value": 23454,
"unit": "ms"
}
]
| Name | Type | Description |
|---|---|---|
| check_id | Integer | The numeric identifier of the check. |
| timestamp_utc | DateTime | Result timestamp. |
| severity | String | Result severity. |
| value | Integer | Result value. |
| unit | String | Result unit of measure. |
When result detalization level is 1
[
{
"message": "1 step, 1 page, 1 url, 142/0 sent/received bytes.",
"identifier": "6f04a0ca-c699-4ead-98b9-b4aa0cba0221",
"attempts": 3,
"result_code": 340,
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "F",
"value": 1234,
"unit": "byte"
},
{
"message": "1 url, 148/6797 sent/received bytes.",
"identifier": "c04ab6ee-d9b3-4fc8-bd82-2c8caac9ff92",
"attempts": 1,
"result_code": 0,
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "E",
"value": 23454,
"unit": "byte"
},
{
"message": "1 url, 148/6797 sent/received bytes.",
"identifier": "29d8e74e-9a42-4294-8da1-ecbaa52dd4af",
"attempts": 3,
"result_code": 200,
"check_id": 12345,
"timestamp_utc": "2024-09-27T22:22:14",
"severity": "F",
"value": 4637,
"unit": "byte"
}
]
| Name | Type | Description |
|---|---|---|
| message | String | The result message. |
| identifier | Guid | The result identifier. |
| attempts | Integer | The number of attempts. |
| result_code | Integer | The code of result. |
| check_id | Integer | The numeric identifier of the check. |
| timestamp_utc | DateTime | Result timestamp. |
| severity | String | Result severity. |
| value | Integer | Result value. |
| unit | String | Result unit of measure. |