GET api/MissingEnrollments?divisionId={divisionId}&async={async}
GET: api/MissingEnrollments
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| divisionId | integer |
None. |
|
| async | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MissingEnrollments| Name | Description | Type | Additional 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": "2026-01-13T05:27:17.2234472+00:00",
"MISSING_INFO": "sample string 4",
"DIV_ID": 5
},
{
"CPI": "sample string 1",
"LASTNAME": "sample string 2",
"FIRSTNAME": "sample string 3",
"DOB": "2026-01-13T05:27:17.2234472+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":"2026-01-13T05:27:17.2234472+00:00","MISSING_INFO":"sample string 4","DIV_ID":5},{"CPI":"sample string 1","LASTNAME":"sample string 2","FIRSTNAME":"sample string 3","DOB":"2026-01-13T05:27:17.2234472+00:00","MISSING_INFO":"sample string 4","DIV_ID":5}]
application/xml, text/xml
Sample:
<ArrayOfMissingEnrollments xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MissingEnrollments>
<CPI>sample string 1</CPI>
<LASTNAME>sample string 2</LASTNAME>
<FIRSTNAME>sample string 3</FIRSTNAME>
<DOB>2026-01-13T05:27:17.2234472+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>2026-01-13T05:27:17.2234472+00:00</DOB>
<MISSING_INFO>sample string 4</MISSING_INFO>
<DIV_ID>5</DIV_ID>
</MissingEnrollments>
</ArrayOfMissingEnrollments>