GET v1/healthchecks/status

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

HealthStatusDto
NameDescriptionTypeAdditional information
Status

string

None.

HasIssues

boolean

None.

CachedStatus

string

None.

PersistedStatus

string

None.

LastReportId

integer

None.

LastReportTime

date

None.

LastCacheUpdate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "hasIssues": true,
  "cachedStatus": "sample string 3",
  "persistedStatus": "sample string 4",
  "lastReportId": 1,
  "lastReportTime": "2026-05-19T07:50:10.0869499-05:00",
  "lastCacheUpdate": "2026-05-19T07:50:10.0869499-05:00"
}

application/xml, text/xml

Sample:
<HealthStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
  <CachedStatus>sample string 3</CachedStatus>
  <HasIssues>true</HasIssues>
  <LastCacheUpdate>2026-05-19T07:50:10.0869499-05:00</LastCacheUpdate>
  <LastReportId>1</LastReportId>
  <LastReportTime>2026-05-19T07:50:10.0869499-05:00</LastReportTime>
  <PersistedStatus>sample string 4</PersistedStatus>
  <Status>sample string 1</Status>
</HealthStatus>