GET api/Admission/All

Get A List of Admission sets in a School

Response Information

List of Programs

Response body formats

application/json, text/json

Sample:
[
  {
    "Year": 1,
    "Id": 2,
    "Name": "sample string 3",
    "locked": true,
    "AdminLock": true
  },
  {
    "Year": 1,
    "Id": 2,
    "Name": "sample string 3",
    "locked": true,
    "AdminLock": true
  },
  {
    "Year": 1,
    "Id": 2,
    "Name": "sample string 3",
    "locked": true,
    "AdminLock": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAdmissionSetModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eduportal.API.Models">
  <AdmissionSetModel>
    <AdminLock>true</AdminLock>
    <Id>2</Id>
    <Name>sample string 3</Name>
    <Year>1</Year>
    <locked>true</locked>
  </AdmissionSetModel>
  <AdmissionSetModel>
    <AdminLock>true</AdminLock>
    <Id>2</Id>
    <Name>sample string 3</Name>
    <Year>1</Year>
    <locked>true</locked>
  </AdmissionSetModel>
  <AdmissionSetModel>
    <AdminLock>true</AdminLock>
    <Id>2</Id>
    <Name>sample string 3</Name>
    <Year>1</Year>
    <locked>true</locked>
  </AdmissionSetModel>
</ArrayOfAdmissionSetModel>