-
Notifications
You must be signed in to change notification settings - Fork 1
POST Forms StudentEvaluation
Pierre Robert-Michon edited this page Mar 5, 2019
·
3 revisions
Create a new Student Evaluation form
POST
/form/studentEvaluation/{formId}/{submissionDate}/{studentPerformance}/{studentWorkExperience}/{coopId}
-
int formId
- unique ID of the form -
String submissionDateStr
- date of submission of the form -
int studentPerformance
- score of student performance -
String studentWorkExperience
- description of student work experience -
int coopId
- unique ID of the coop to which the form is associated
A JSON array of message header maps, containing the following fields:
-
int formId
- unique ID of the form -
String submissionDateStr
- date of submission of the form -
int studentPerformance
- score of student performance -
String studentWorkExperience
- description of student work experience -
int coopId
- unique ID of the coop to which the form is associated
Request: POST
http://localhost:8080/form/studentEvaluation/12/2018-09-10/10/Easy\ to\ work\ with,\ eager\ to\ learn/43
Success Response:
-
Code: 200
- Content:
{
"formId": 12,
"submissionDate": "2018-09-10",
"studentPerformance": 10,
"studentWorkExperience": "Easy to work with, eager to learn",
"coop": 43
}
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