GET api/BusinessIntelligence/GetCurrentMonthAssistanceUtilization?from={from}&to={to}

Get the assistance utilization for the current month. Data is grouped on a per client and per category basis.

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 AssistanceUtilizationDto
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 AssistanceUtilizationDto

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Date": "2025-05-23T19:58:46.5866664+02:00",
    "GroupData": [
      {
        "GroupId": 1,
        "LastUpdate": "2025-05-23T19:58:46.5866664+02:00",
        "Data": [
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          },
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          }
        ]
      },
      {
        "GroupId": 1,
        "LastUpdate": "2025-05-23T19:58:46.5866664+02:00",
        "Data": [
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          },
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          }
        ]
      }
    ]
  },
  {
    "Date": "2025-05-23T19:58:46.5866664+02:00",
    "GroupData": [
      {
        "GroupId": 1,
        "LastUpdate": "2025-05-23T19:58:46.5866664+02:00",
        "Data": [
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          },
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          }
        ]
      },
      {
        "GroupId": 1,
        "LastUpdate": "2025-05-23T19:58:46.5866664+02:00",
        "Data": [
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          },
          {
            "CompanyCode": "sample string 1",
            "KST": "sample string 2",
            "Name": "sample string 3",
            "ClientID": 4,
            "Month": "2025-05-23T19:58:46.5866664+02:00",
            "Category": "sample string 6",
            "GrantedTime": 1.1,
            "PlannedTime": 7,
            "DoneTime": 8
          }
        ]
      }
    ]
  }
]