GET api/MissingEnrollments?divisionId={divisionId}&async={async}

GET: api/MissingEnrollments

Request Information

URI Parameters

NameDescriptionTypeAdditional information
divisionId

integer

None.

async

boolean

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MissingEnrollments
NameDescriptionTypeAdditional information
CPI

string

None.

LASTNAME

string

None.

FIRSTNAME

string

None.

DOB

date

None.

MISSING_INFO

string

None.

DIV_ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CPI": "sample string 1",
    "LASTNAME": "sample string 2",
    "FIRSTNAME": "sample string 3",
    "DOB": "2025-08-29T02:52:31.5114698+00:00",
    "MISSING_INFO": "sample string 4",
    "DIV_ID": 5
  },
  {
    "CPI": "sample string 1",
    "LASTNAME": "sample string 2",
    "FIRSTNAME": "sample string 3",
    "DOB": "2025-08-29T02:52:31.5114698+00:00",
    "MISSING_INFO": "sample string 4",
    "DIV_ID": 5
  }
]

application/octet-stream

Sample:
[{"CPI":"sample string 1","LASTNAME":"sample string 2","FIRSTNAME":"sample string 3","DOB":"2025-08-29T02:52:31.5114698+00:00","MISSING_INFO":"sample string 4","DIV_ID":5},{"CPI":"sample string 1","LASTNAME":"sample string 2","FIRSTNAME":"sample string 3","DOB":"2025-08-29T02:52:31.5114698+00:00","MISSING_INFO":"sample string 4","DIV_ID":5}]

application/xml, text/xml

Sample:
<ArrayOfMissingEnrollments xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MissingEnrollments>
    <CPI>sample string 1</CPI>
    <LASTNAME>sample string 2</LASTNAME>
    <FIRSTNAME>sample string 3</FIRSTNAME>
    <DOB>2025-08-29T02:52:31.5114698+00:00</DOB>
    <MISSING_INFO>sample string 4</MISSING_INFO>
    <DIV_ID>5</DIV_ID>
  </MissingEnrollments>
  <MissingEnrollments>
    <CPI>sample string 1</CPI>
    <LASTNAME>sample string 2</LASTNAME>
    <FIRSTNAME>sample string 3</FIRSTNAME>
    <DOB>2025-08-29T02:52:31.5114698+00:00</DOB>
    <MISSING_INFO>sample string 4</MISSING_INFO>
    <DIV_ID>5</DIV_ID>
  </MissingEnrollments>
</ArrayOfMissingEnrollments>