GET api/DashboardApi/GetItemsByParentId?parentId={parentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
parentId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ItemsDashboard
NameDescriptionTypeAdditional information
ItemId

globally unique identifier

None.

EnName

string

None.

ArName

string

None.

Score

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ItemId": "5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414",
    "EnName": "sample string 2",
    "ArName": "sample string 3",
    "Score": 4.0
  },
  {
    "ItemId": "5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414",
    "EnName": "sample string 2",
    "ArName": "sample string 3",
    "Score": 4.0
  }
]

text/html, multipart/form-data

Sample:
[{"ItemId":"5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414","EnName":"sample string 2","ArName":"sample string 3","Score":4.0},{"ItemId":"5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414","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>5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414</ItemId>
    <Score>4</Score>
  </ItemsDashboard>
  <ItemsDashboard>
    <ArName>sample string 3</ArName>
    <EnName>sample string 2</EnName>
    <ItemId>5a420fbc-a5e0-4cd7-a0bc-1a408f3a6414</ItemId>
    <Score>4</Score>
  </ItemsDashboard>
</ArrayOfItemsDashboard>