GET api/Vet/V1/Students/Applications?id={id}&empid={empid}&dateapplied={dateapplied}&status={status}
Get all existing applications. (Only latest 500 applications, if no search parameter filter provided.)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Unique student/participant identifier |
string |
None. |
| empid |
Unique employer code/identifier |
string |
None. |
| dateapplied |
Specific application date applied (dd/mm/yyyy) |
string |
None. |
| status |
Specific application status (e.g. 'Active Student', 'Cancelled', 'Graduated', 'Completed') |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of ModelVetStudentCourseV1
Collection of ModelVetStudentCourseV1| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentId |
Unique student identifier. |
string |
None. |
| CourseId |
Unique course identifier that was applied. |
string |
None. |
| CourseAttempt |
Auto-number of the attempt applying the same course. |
integer |
None. |
| ApplicationId |
Auto-number generated by the system when submit the application. |
string |
None. |
| EmployerId |
Employer code/identifier |
integer |
None. |
| TimeStamp |
Timestamp when the application submitted/recorded to the system |
date |
None. |
| CourseIntakeCode |
Unique course intake code associated with the applied course |
string |
None. |
| Status |
Student course status |
string |
None. |
Response Formats
application/json, text/json
[
{
"StudentId": "sample string 1",
"CourseId": "sample string 2",
"CourseAttempt": 3,
"ApplicationId": "sample string 4",
"EmployerId": 1,
"TimeStamp": "2025-12-15T16:10:08.1886358+11:00",
"CourseIntakeCode": "sample string 5",
"Status": "sample string 6"
},
{
"StudentId": "sample string 1",
"CourseId": "sample string 2",
"CourseAttempt": 3,
"ApplicationId": "sample string 4",
"EmployerId": 1,
"TimeStamp": "2025-12-15T16:10:08.1886358+11:00",
"CourseIntakeCode": "sample string 5",
"Status": "sample string 6"
}
]
application/xml, text/xml
<ArrayOfModelVetStudentCourseV1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DotEdu_WebAPI.Models.Vet.V1">
<ModelVetStudentCourseV1>
<ApplicationId>sample string 4</ApplicationId>
<CourseAttempt>3</CourseAttempt>
<CourseId>sample string 2</CourseId>
<CourseIntakeCode>sample string 5</CourseIntakeCode>
<EmployerId>1</EmployerId>
<Status>sample string 6</Status>
<StudentId>sample string 1</StudentId>
<TimeStamp>2025-12-15T16:10:08.1886358+11:00</TimeStamp>
</ModelVetStudentCourseV1>
<ModelVetStudentCourseV1>
<ApplicationId>sample string 4</ApplicationId>
<CourseAttempt>3</CourseAttempt>
<CourseId>sample string 2</CourseId>
<CourseIntakeCode>sample string 5</CourseIntakeCode>
<EmployerId>1</EmployerId>
<Status>sample string 6</Status>
<StudentId>sample string 1</StudentId>
<TimeStamp>2025-12-15T16:10:08.1886358+11:00</TimeStamp>
</ModelVetStudentCourseV1>
</ArrayOfModelVetStudentCourseV1>