-
Notifications
You must be signed in to change notification settings - Fork 1
GET Forms Student
Get a list of all forms for a specific student and a specific semester
GET
/forms/student/{userId}/{semester}/{year}
-
int userId
: id of the user -
String semester
- semester -
int year
- year
An array of forms, each containing the fields specific to the kind of form.
For more details about fields of each specific form, please refer to the Output of their creation declared in their Rest Api documentation (5.4 to 5.7 here)
Request: GET
http://localhost:8080/forms/student/1/Fall/2018
Success Response:
-
Code: 200
- Content:
{
"formId": 10,
"submissionDate": "2017-03-02",
"employerEvaluation": 2,
"softwareTechnologies": "Java, Python",
"usefulCourses": "ECSE 321",
"studentWorkExperience": "None",
"studentPerformance": 5,
"tasks": "Testing",
"hoursPerWeek": 20,
"wage": 500,
"training": null,
"coop": -4
}
1.1 Requirements Model
1.2 Domain Model
1.3 Deliverable 1 Report
2.1 RESTful Service Endpoints
2.2 Software Quality Assurance
2.3 Deliverable 2 Report
3.1 Architecture Model
3.2 Deliverable 3 Report
4.0 Before Anything
4.1 User Documentation
4.2 User Experience
4.3 Software Testing Update
4.4 Android App Instructions
4.5 Deliverable 4 Report