GET api/DashboardApi/GetItemsByParentId?parentId={parentId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
parentId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ItemsDashboardName | Description | Type | Additional information |
---|---|---|---|
ItemId | globally unique identifier |
None. |
|
EnName | string |
None. |
|
ArName | string |
None. |
|
Score | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ItemId": "2747d2fd-001e-4f2d-9272-4b6e1d071325", "EnName": "sample string 2", "ArName": "sample string 3", "Score": 4.0 }, { "ItemId": "2747d2fd-001e-4f2d-9272-4b6e1d071325", "EnName": "sample string 2", "ArName": "sample string 3", "Score": 4.0 } ]
text/html, multipart/form-data
Sample:
[{"ItemId":"2747d2fd-001e-4f2d-9272-4b6e1d071325","EnName":"sample string 2","ArName":"sample string 3","Score":4.0},{"ItemId":"2747d2fd-001e-4f2d-9272-4b6e1d071325","EnName":"sample string 2","ArName":"sample string 3","Score":4.0}]
application/xml, text/xml
Sample:
<ArrayOfItemsDashboard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO"> <ItemsDashboard> <ArName>sample string 3</ArName> <EnName>sample string 2</EnName> <ItemId>2747d2fd-001e-4f2d-9272-4b6e1d071325</ItemId> <Score>4</Score> </ItemsDashboard> <ItemsDashboard> <ArName>sample string 3</ArName> <EnName>sample string 2</EnName> <ItemId>2747d2fd-001e-4f2d-9272-4b6e1d071325</ItemId> <Score>4</Score> </ItemsDashboard> </ArrayOfItemsDashboard>