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.

BCExamContainerId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ExamProducts": [
    {
      "WebProductId": "68777ae6-473d-4b22-ab2e-1f8dce2db17b",
      "ParentWebProductId": "d9cb133d-d3a6-43bc-9390-170b181720ba",
      "BCProductId": "sample string 3"
    },
    {
      "WebProductId": "68777ae6-473d-4b22-ab2e-1f8dce2db17b",
      "ParentWebProductId": "d9cb133d-d3a6-43bc-9390-170b181720ba",
      "BCProductId": "sample string 3"
    }
  ],
  "ProgramId": "396fa1d1-d775-4d3a-9ce4-3adfeda06bd9",
  "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>d9cb133d-d3a6-43bc-9390-170b181720ba</ParentWebProductId>
      <WebProductId>68777ae6-473d-4b22-ab2e-1f8dce2db17b</WebProductId>
    </ExamProduct>
    <ExamProduct>
      <BCProductId>sample string 3</BCProductId>
      <ParentWebProductId>d9cb133d-d3a6-43bc-9390-170b181720ba</ParentWebProductId>
      <WebProductId>68777ae6-473d-4b22-ab2e-1f8dce2db17b</WebProductId>
    </ExamProduct>
  </ExamProducts>
  <ProgramId>396fa1d1-d775-4d3a-9ce4-3adfeda06bd9</ProgramId>
</ExamProductSet>