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": "5c44c192-c03b-48dd-a110-b88c30279f26",
      "ParentWebProductId": "ebfa98a7-206b-41fd-bd99-d149ff65dd15"
    },
    {
      "WebProductId": "5c44c192-c03b-48dd-a110-b88c30279f26",
      "ParentWebProductId": "ebfa98a7-206b-41fd-bd99-d149ff65dd15"
    }
  ],
  "ProgramId": "8df79ff3-0e75-4ec8-8a10-933bc3476a0e"
}

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>ebfa98a7-206b-41fd-bd99-d149ff65dd15</ParentWebProductId>
      <WebProductId>5c44c192-c03b-48dd-a110-b88c30279f26</WebProductId>
    </ExamProduct>
    <ExamProduct>
      <ParentWebProductId>ebfa98a7-206b-41fd-bd99-d149ff65dd15</ParentWebProductId>
      <WebProductId>5c44c192-c03b-48dd-a110-b88c30279f26</WebProductId>
    </ExamProduct>
  </ExamProducts>
  <ProgramId>8df79ff3-0e75-4ec8-8a10-933bc3476a0e</ProgramId>
</ExamProductSet>