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": "10f84f7f-0a03-44bf-baae-ae020e5f9bde",
"CategoryName": "sample string 2",
"SubBuildings": [
{
"ItemId": "45ad9423-63c9-4be5-b39c-c6f523aecf62",
"EnName": "sample string 2",
"ArName": "sample string 3",
"Score": 4.0
},
{
"ItemId": "45ad9423-63c9-4be5-b39c-c6f523aecf62",
"EnName": "sample string 2",
"ArName": "sample string 3",
"Score": 4.0
}
]
}
text/html, multipart/form-data
Sample:
{"CategoryId":"10f84f7f-0a03-44bf-baae-ae020e5f9bde","CategoryName":"sample string 2","SubBuildings":[{"ItemId":"45ad9423-63c9-4be5-b39c-c6f523aecf62","EnName":"sample string 2","ArName":"sample string 3","Score":4.0},{"ItemId":"45ad9423-63c9-4be5-b39c-c6f523aecf62","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>10f84f7f-0a03-44bf-baae-ae020e5f9bde</CategoryId>
<CategoryName>sample string 2</CategoryName>
<SubBuildings>
<ItemsDashboard>
<ArName>sample string 3</ArName>
<EnName>sample string 2</EnName>
<ItemId>45ad9423-63c9-4be5-b39c-c6f523aecf62</ItemId>
<Score>4</Score>
</ItemsDashboard>
<ItemsDashboard>
<ArName>sample string 3</ArName>
<EnName>sample string 2</EnName>
<ItemId>45ad9423-63c9-4be5-b39c-c6f523aecf62</ItemId>
<Score>4</Score>
</ItemsDashboard>
</SubBuildings>
</CategorieSubBuildings>