GET api/BusinessIntelligence/GetCurrentAidTimeHomeGroup?from={from}&to={to}
Get metrics for current aid time per home group, at the given date. Data is grouped by home group, date and category.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| from |
Filter data from this date (inclusive), must be before or equal to . |
date |
Required |
| to |
Filter data to this date (inclusive), must be after or equal to . |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StatisticDto of IEnumerable of CurrentAidTimeDto| Name | Description | Type | Additional Information |
|---|---|---|---|
| Date |
The date and time for when the metric was created. |
date |
None. |
| GroupData |
Collection of statistical data per group. |
Collection of StatisticGroupData of IEnumerable of CurrentAidTimeDto |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Date": "2025-11-04T13:46:53.3097142+01:00",
"GroupData": [
{
"GroupId": 1,
"LastUpdate": "2025-11-04T13:46:53.3097142+01:00",
"Data": [
{
"Category": "sample string 1",
"AidTime": 2.1
},
{
"Category": "sample string 1",
"AidTime": 2.1
}
]
},
{
"GroupId": 1,
"LastUpdate": "2025-11-04T13:46:53.3097142+01:00",
"Data": [
{
"Category": "sample string 1",
"AidTime": 2.1
},
{
"Category": "sample string 1",
"AidTime": 2.1
}
]
}
]
},
{
"Date": "2025-11-04T13:46:53.3097142+01:00",
"GroupData": [
{
"GroupId": 1,
"LastUpdate": "2025-11-04T13:46:53.3097142+01:00",
"Data": [
{
"Category": "sample string 1",
"AidTime": 2.1
},
{
"Category": "sample string 1",
"AidTime": 2.1
}
]
},
{
"GroupId": 1,
"LastUpdate": "2025-11-04T13:46:53.3097142+01:00",
"Data": [
{
"Category": "sample string 1",
"AidTime": 2.1
},
{
"Category": "sample string 1",
"AidTime": 2.1
}
]
}
]
}
]