Registers a student for a class
Request Path
POST /api/v3/class/{classId}/students |
Request Payload
{ |
"email" : "cm@cloudshare.com" , |
"firstName" : "Carlos" , |
"lastName" : "Moreno" |
} |
Parameters
{classID} |
The ID of the class. To retrieve class IDs, use GET /api/v3/class. |
email |
The student’s email address |
firstName |
The student’s first name |
LastName |
The student’s last name |
Response Example
{ |
"studentId" : "SDcJ5YHCfmKWXGgHJdiK0UEQ2" |
} |