GET api/superadmin/dashboard/health-check
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
PlatformHealthCheck| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseConnected | boolean |
None. |
|
| TotalErrors | integer |
None. |
|
| PendingNotifications | integer |
None. |
|
| PendingEmails | integer |
None. |
|
| SystemStatus | string |
None. |
|
| ErrorMessage | string |
None. |
|
| LastChecked | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"DatabaseConnected": true,
"TotalErrors": 2,
"PendingNotifications": 3,
"PendingEmails": 4,
"SystemStatus": "sample string 5",
"ErrorMessage": "sample string 6",
"LastChecked": "2026-03-26T03:50:49.1632299+02:00"
}
application/xml, text/xml
Sample:
<PlatformHealthCheck xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models"> <DatabaseConnected>true</DatabaseConnected> <ErrorMessage>sample string 6</ErrorMessage> <LastChecked>2026-03-26T03:50:49.1632299+02:00</LastChecked> <PendingEmails>4</PendingEmails> <PendingNotifications>3</PendingNotifications> <SystemStatus>sample string 5</SystemStatus> <TotalErrors>2</TotalErrors> </PlatformHealthCheck>