POST api/v1/Dashboards/metrics
Get Dashboard Metrics. This is an asynchronous service.
Request Information
URI Parameters
None.
Body Parameters
MetricsFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| DashboardId | globally unique identifier |
None. |
|
| Facilities | Collection of integer |
None. |
|
| Clusters | Collection of integer |
None. |
|
| Departments | Collection of integer |
None. |
|
| StartDateTime | date |
None. |
|
| EndDateTime | date |
None. |
|
| CurrentDateTime | date |
None. |
|
| SortFields | Collection of string |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DashboardId": "a6a396be-528f-445a-b7ab-2177e77fbf5a",
"Facilities": [
1,
2
],
"Clusters": [
1,
2
],
"Departments": [
1,
2
],
"StartDateTime": "2026-03-10T17:26:00.7492982-05:00",
"EndDateTime": "2026-03-10T17:26:00.7492982-05:00",
"CurrentDateTime": "2026-03-10T17:26:00.7492982-05:00",
"SortFields": [
"sample string 1",
"sample string 2"
],
"UserId": 1
}
Response Information
Resource Description
ApiResponseModelOfListOfFacilityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfFacilityModel |
None. |
|
| Errors | Collection of string |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"PageSize": 1,
"Page": 2,
"TotalPages": 3,
"TotalResults": 4,
"Results": null
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}