GET api/programs/examproduct/details

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ExamProductSet
NameDescriptionTypeAdditional information
ExamProducts

Collection of ExamProduct

None.

ProgramId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "ExamProducts": [
    {
      "WebProductId": "23ba7860-ad67-427e-99cb-537e5087cc04",
      "ParentWebProductId": "d9bdac8c-653f-42f5-883e-823b697db974"
    },
    {
      "WebProductId": "23ba7860-ad67-427e-99cb-537e5087cc04",
      "ParentWebProductId": "d9bdac8c-653f-42f5-883e-823b697db974"
    }
  ],
  "ProgramId": "5fd4db32-cd3f-4158-905d-5462b99bc7b6"
}

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">
  <ExamProducts>
    <ExamProduct>
      <ParentWebProductId>d9bdac8c-653f-42f5-883e-823b697db974</ParentWebProductId>
      <WebProductId>23ba7860-ad67-427e-99cb-537e5087cc04</WebProductId>
    </ExamProduct>
    <ExamProduct>
      <ParentWebProductId>d9bdac8c-653f-42f5-883e-823b697db974</ParentWebProductId>
      <WebProductId>23ba7860-ad67-427e-99cb-537e5087cc04</WebProductId>
    </ExamProduct>
  </ExamProducts>
  <ProgramId>5fd4db32-cd3f-4158-905d-5462b99bc7b6</ProgramId>
</ExamProductSet>