Student Grading API - lenlaurito/movie-house GitHub Wiki

Functionalities:

  • Show Student
  • Show Students
  • Create new Student
  • Update student
  • Delete Student
  • Show Grade

Show Student

Request:

GET /api/v1/student/{studentId}

Response:

Status Code: 200 Response Body: Student Response

Sample Response Body:

[
{
  "id": 1,
  "name": "Francis",
  "yearLevel": 3
}
]

Show Students

Request:

GET /api/v1/student

Parameters:

Name Description Required
yearLevel year level of the student false
offset starting point for pagination false (default: 1)

Response:

Status Code: 200

Response Body:

List of Student Responses

Sample Response Body:

{
  "id": 1,
  "name": "Francis",
  "yearLevel": 3
}

Student Response

Field Description
id Id of the student
name Name of the student