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": "165f8254-2325-419e-8946-97477c066a9f",
      "ParentWebProductId": "78981a15-8123-46af-811f-18f693bee421"
    },
    {
      "WebProductId": "165f8254-2325-419e-8946-97477c066a9f",
      "ParentWebProductId": "78981a15-8123-46af-811f-18f693bee421"
    }
  ],
  "ProgramId": "0db8acd7-3b54-4460-90c2-a07dbd775ca7"
}

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>78981a15-8123-46af-811f-18f693bee421</ParentWebProductId>
      <WebProductId>165f8254-2325-419e-8946-97477c066a9f</WebProductId>
    </ExamProduct>
    <ExamProduct>
      <ParentWebProductId>78981a15-8123-46af-811f-18f693bee421</ParentWebProductId>
      <WebProductId>165f8254-2325-419e-8946-97477c066a9f</WebProductId>
    </ExamProduct>
  </ExamProducts>
  <ProgramId>0db8acd7-3b54-4460-90c2-a07dbd775ca7</ProgramId>
</ExamProductSet>