GET api/DashboardApi/GetCategoreisBySubBuildingId?subBuildingId={subBuildingId}&dateFrom={dateFrom}&dateTo={dateTo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subBuildingId | globally unique identifier |
Required |
|
| dateFrom | date |
Required |
|
| dateTo | date |
Required |
Body Parameters
None.
Response Information
Resource Description
CategorieSubBuildings| Name | Description | Type | Additional information |
|---|---|---|---|
| CategoryId | globally unique identifier |
None. |
|
| CategoryName | string |
None. |
|
| SubBuildings | Collection of ItemsDashboard |
None. |
Response Formats
application/json, text/json
Sample:
{
"CategoryId": "a94a3dea-31ba-4b2e-b7c1-4e20c6f93707",
"CategoryName": "sample string 2",
"SubBuildings": [
{
"ItemId": "37c92f61-0640-4040-b97f-62e82a04008b",
"EnName": "sample string 2",
"ArName": "sample string 3",
"Score": 4.0
},
{
"ItemId": "37c92f61-0640-4040-b97f-62e82a04008b",
"EnName": "sample string 2",
"ArName": "sample string 3",
"Score": 4.0
}
]
}
text/html, multipart/form-data
Sample:
{"CategoryId":"a94a3dea-31ba-4b2e-b7c1-4e20c6f93707","CategoryName":"sample string 2","SubBuildings":[{"ItemId":"37c92f61-0640-4040-b97f-62e82a04008b","EnName":"sample string 2","ArName":"sample string 3","Score":4.0},{"ItemId":"37c92f61-0640-4040-b97f-62e82a04008b","EnName":"sample string 2","ArName":"sample string 3","Score":4.0}]}
application/xml, text/xml
Sample:
<CategorieSubBuildings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO">
<CategoryId>a94a3dea-31ba-4b2e-b7c1-4e20c6f93707</CategoryId>
<CategoryName>sample string 2</CategoryName>
<SubBuildings>
<ItemsDashboard>
<ArName>sample string 3</ArName>
<EnName>sample string 2</EnName>
<ItemId>37c92f61-0640-4040-b97f-62e82a04008b</ItemId>
<Score>4</Score>
</ItemsDashboard>
<ItemsDashboard>
<ArName>sample string 3</ArName>
<EnName>sample string 2</EnName>
<ItemId>37c92f61-0640-4040-b97f-62e82a04008b</ItemId>
<Score>4</Score>
</ItemsDashboard>
</SubBuildings>
</CategorieSubBuildings>