Skip to content

POST Forms StudentEvaluation

Pierre Robert-Michon edited this page Mar 5, 2019 · 3 revisions

Create a new Student Evaluation form

Method

POST

URL

/form/studentEvaluation/{formId}/{submissionDate}/{studentPerformance}/{studentWorkExperience}/{coopId}

Params

  • 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

Output

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

Example

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
}

Back to REST API

Clone this wiki locally