GET api/programs/examproduct/details

Get exam product details for all programs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Exam and application fee details of type

ExamProductSet
NameDescriptionTypeAdditional information
ExamProducts

Collection of ExamProduct

None.

ProgramId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "ExamProducts": [
    {
      "WebProductId": "cfd247b0-ca8c-4a72-b4b2-7f110cd71a06",
      "ParentWebProductId": "98e14d67-48da-4a9b-86be-8c174b7e7b1b"
    },
    {
      "WebProductId": "cfd247b0-ca8c-4a72-b4b2-7f110cd71a06",
      "ParentWebProductId": "98e14d67-48da-4a9b-86be-8c174b7e7b1b"
    }
  ],
  "ProgramId": "81b4ccfe-70a9-4807-8344-510315bfe61e"
}

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>98e14d67-48da-4a9b-86be-8c174b7e7b1b</ParentWebProductId>
      <WebProductId>cfd247b0-ca8c-4a72-b4b2-7f110cd71a06</WebProductId>
    </ExamProduct>
    <ExamProduct>
      <ParentWebProductId>98e14d67-48da-4a9b-86be-8c174b7e7b1b</ParentWebProductId>
      <WebProductId>cfd247b0-ca8c-4a72-b4b2-7f110cd71a06</WebProductId>
    </ExamProduct>
  </ExamProducts>
  <ProgramId>81b4ccfe-70a9-4807-8344-510315bfe61e</ProgramId>
</ExamProductSet>