The Students Endpoint allows the user to retrieve, add, and delete students from the system.

To retrieve a list of all students, call a GET request to the students resource. You can also retrieve a single student from the system by specifying the student id as a path parameter.

To add a student to the system, call a POST request with a payload including the student’s information in the request body.

To delete a student, call a DELETE request and specify the student id as a path parameter.

View each Students Endpoint request method for more information.