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
CategorieSubBuildingsName | 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": "16261730-8972-4520-84b3-55280f1c5356", "CategoryName": "sample string 2", "SubBuildings": [ { "ItemId": "6b83a76f-c831-4afc-9613-0069b15c30b8", "EnName": "sample string 2", "ArName": "sample string 3", "Score": 4.0 }, { "ItemId": "6b83a76f-c831-4afc-9613-0069b15c30b8", "EnName": "sample string 2", "ArName": "sample string 3", "Score": 4.0 } ] }
text/html, multipart/form-data
Sample:
{"CategoryId":"16261730-8972-4520-84b3-55280f1c5356","CategoryName":"sample string 2","SubBuildings":[{"ItemId":"6b83a76f-c831-4afc-9613-0069b15c30b8","EnName":"sample string 2","ArName":"sample string 3","Score":4.0},{"ItemId":"6b83a76f-c831-4afc-9613-0069b15c30b8","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>16261730-8972-4520-84b3-55280f1c5356</CategoryId> <CategoryName>sample string 2</CategoryName> <SubBuildings> <ItemsDashboard> <ArName>sample string 3</ArName> <EnName>sample string 2</EnName> <ItemId>6b83a76f-c831-4afc-9613-0069b15c30b8</ItemId> <Score>4</Score> </ItemsDashboard> <ItemsDashboard> <ArName>sample string 3</ArName> <EnName>sample string 2</EnName> <ItemId>6b83a76f-c831-4afc-9613-0069b15c30b8</ItemId> <Score>4</Score> </ItemsDashboard> </SubBuildings> </CategorieSubBuildings>