GET api/programs/examproduct/details
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ExamProductSet| Name | Description | Type | Additional information |
|---|---|---|---|
| ExamProducts | Collection of ExamProduct |
None. |
|
| ProgramId | globally unique identifier |
None. |
|
| BCExamContainerId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExamProducts": [
{
"WebProductId": "7d516538-05fa-44f9-9a23-61cdbd243e42",
"ParentWebProductId": "42fdf219-c45c-461c-8149-c31448282192",
"BCProductId": "sample string 3"
},
{
"WebProductId": "7d516538-05fa-44f9-9a23-61cdbd243e42",
"ParentWebProductId": "42fdf219-c45c-461c-8149-c31448282192",
"BCProductId": "sample string 3"
}
],
"ProgramId": "a1433dc4-f69c-413d-8f3e-c12776eb352c",
"BCExamContainerId": "sample string 2"
}
application/xml, text/xml
Sample:
<ExamProductSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
<BCExamContainerId>sample string 2</BCExamContainerId>
<ExamProducts>
<ExamProduct>
<BCProductId>sample string 3</BCProductId>
<ParentWebProductId>42fdf219-c45c-461c-8149-c31448282192</ParentWebProductId>
<WebProductId>7d516538-05fa-44f9-9a23-61cdbd243e42</WebProductId>
</ExamProduct>
<ExamProduct>
<BCProductId>sample string 3</BCProductId>
<ParentWebProductId>42fdf219-c45c-461c-8149-c31448282192</ParentWebProductId>
<WebProductId>7d516538-05fa-44f9-9a23-61cdbd243e42</WebProductId>
</ExamProduct>
</ExamProducts>
<ProgramId>a1433dc4-f69c-413d-8f3e-c12776eb352c</ProgramId>
</ExamProductSet>