Modifies a student’s registration details
Request Path
PUT /api/v3/class/{classId}/students/{studentId}
Request Payload Example
{ "email": "cm@cloudshare.com", "firstName": "Carlos", "lastName": "Moreno" }
Parameters
{classId} |
The ID of the class for which the student is registered. To retrieve class IDs, use GET /api/v3/class. |
{studentId} |
The ID of the student. To retrieve student IDs for the class, use GET /api/v3/class/ID/students. |
email |
The student’s email address. This can be changed as long as the student did not yet log in. |
firstName |
The student’s first name |
lastName |
The student’s last name |
Response
None