GET   checks/{checkId}/metadata

Gets a check's metadata

URL Parameters

NameDescription
checkId

Check identifier. Type: numeric.

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.

Returns

Returns check's metadata.

Request example

Response body model example and description

Check metadata

{
  "id": 6789,
  "guid": "e99ff7fb-d614-4518-9de2-9a9cedad6090",
  "name": "Check sample",
  "metadata": {
    "created": {
      "user_name": "user1",
      "timestamp_utc": "2024-09-27T22:22:04"
    },
    "last_updated": {
      "user_name": "user3",
      "timestamp_utc": "2024-09-27T22:22:04"
    }
  }
}
NameType Description
idInteger

The numeric identifier of the check.

guidString

The GUID of the check.

nameString

The name of the check.

metadataObject

The check metadata.

createdObject

The check creation info.

user_nameString

User name.

timestamp_utcDateTime

Timestamp in UTC.

last_updatedObject

The check last update info.

user_nameString

User name.

timestamp_utcDateTime

Timestamp in UTC.