GET api/GetVerificationApplicationStudents?ApplicationId={ApplicationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of VerificationResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationStudentId | integer |
None. |
|
| ApplicationId | integer |
None. |
|
| Studentd | string |
None. |
|
| StudentName | string |
None. |
|
| CaseNumber | string |
None. |
|
| CaseTypeId | integer |
None. |
|
| IsFosterChild | boolean |
None. |
|
| ApplicationApprovalTypeId | integer |
None. |
|
| VerificationApplicationStudentId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ApplicationStudentId": 1,
"ApplicationId": 1,
"Studentd": "sample string 1",
"StudentName": "sample string 2",
"CaseNumber": "sample string 3",
"CaseTypeId": 1,
"IsFosterChild": true,
"ApplicationApprovalTypeId": 4,
"VerificationApplicationStudentId": 1
},
{
"ApplicationStudentId": 1,
"ApplicationId": 1,
"Studentd": "sample string 1",
"StudentName": "sample string 2",
"CaseNumber": "sample string 3",
"CaseTypeId": 1,
"IsFosterChild": true,
"ApplicationApprovalTypeId": 4,
"VerificationApplicationStudentId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfVerificationResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.VerificationResponse">
<VerificationResponseModel>
<ApplicationApprovalTypeId>4</ApplicationApprovalTypeId>
<ApplicationId>1</ApplicationId>
<ApplicationStudentId>1</ApplicationStudentId>
<CaseNumber>sample string 3</CaseNumber>
<CaseTypeId>1</CaseTypeId>
<IsFosterChild>true</IsFosterChild>
<StudentName>sample string 2</StudentName>
<Studentd>sample string 1</Studentd>
<VerificationApplicationStudentId>1</VerificationApplicationStudentId>
</VerificationResponseModel>
<VerificationResponseModel>
<ApplicationApprovalTypeId>4</ApplicationApprovalTypeId>
<ApplicationId>1</ApplicationId>
<ApplicationStudentId>1</ApplicationStudentId>
<CaseNumber>sample string 3</CaseNumber>
<CaseTypeId>1</CaseTypeId>
<IsFosterChild>true</IsFosterChild>
<StudentName>sample string 2</StudentName>
<Studentd>sample string 1</Studentd>
<VerificationApplicationStudentId>1</VerificationApplicationStudentId>
</VerificationResponseModel>
</ArrayOfVerificationResponseModel>