GET api/Child/GetProgramEnrolTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ProgEnrolTypeModel
NameDescriptionTypeAdditional information
ProgramTypes

Collection of ProgramTypes

None.

EnrollmentTypes

Collection of EnrollmentTypes

None.

EligibilityTypes

Collection of EligibilityTypes

None.

BusTypes

Collection of BusTypes

None.

Response Formats

application/json, text/json

Sample:
{
  "ProgramTypes": [
    {
      "ProgramTypeId": 1,
      "ProgramType": "sample string 2"
    },
    {
      "ProgramTypeId": 1,
      "ProgramType": "sample string 2"
    }
  ],
  "EnrollmentTypes": [
    {
      "EnrolmentTypeId": 1,
      "EnrollmentType": "sample string 2"
    },
    {
      "EnrolmentTypeId": 1,
      "EnrollmentType": "sample string 2"
    }
  ],
  "EligibilityTypes": [
    {
      "EligibilityTypeId": 1,
      "EligibilityType": "sample string 2"
    },
    {
      "EligibilityTypeId": 1,
      "EligibilityType": "sample string 2"
    }
  ],
  "BusTypes": [
    {
      "BusLinePkId": 1,
      "BusLine_Id": "sample string 2"
    },
    {
      "BusLinePkId": 1,
      "BusLine_Id": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ProgEnrolTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <BusTypes>
    <BusTypes>
      <BusLinePkId>1</BusLinePkId>
      <BusLine_Id>sample string 2</BusLine_Id>
    </BusTypes>
    <BusTypes>
      <BusLinePkId>1</BusLinePkId>
      <BusLine_Id>sample string 2</BusLine_Id>
    </BusTypes>
  </BusTypes>
  <EligibilityTypes>
    <EligibilityTypes>
      <EligibilityType>sample string 2</EligibilityType>
      <EligibilityTypeId>1</EligibilityTypeId>
    </EligibilityTypes>
    <EligibilityTypes>
      <EligibilityType>sample string 2</EligibilityType>
      <EligibilityTypeId>1</EligibilityTypeId>
    </EligibilityTypes>
  </EligibilityTypes>
  <EnrollmentTypes>
    <EnrollmentTypes>
      <EnrollmentType>sample string 2</EnrollmentType>
      <EnrolmentTypeId>1</EnrolmentTypeId>
    </EnrollmentTypes>
    <EnrollmentTypes>
      <EnrollmentType>sample string 2</EnrollmentType>
      <EnrolmentTypeId>1</EnrolmentTypeId>
    </EnrollmentTypes>
  </EnrollmentTypes>
  <ProgramTypes>
    <ProgramTypes>
      <ProgramType>sample string 2</ProgramType>
      <ProgramTypeId>1</ProgramTypeId>
    </ProgramTypes>
    <ProgramTypes>
      <ProgramType>sample string 2</ProgramType>
      <ProgramTypeId>1</ProgramTypeId>
    </ProgramTypes>
  </ProgramTypes>
</ProgEnrolTypeModel>