POST
/
students
cURL
curl --request POST \
  --url http://sandbox.mintlify.com/students \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "John",
  "lastName": "Smith",
  "GPA": 3.95,
  "gradeLevel": 1,
  "attendanceStatus": "present",
  "id": "01234"
}'
{
  "firstName": "John",
  "lastName": "Smith",
  "GPA": 3.95,
  "gradeLevel": 1,
  "attendanceStatus": "present",
  "id": "01234"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Student to add to the classroom.

The body is of type object.

Response

200
application/json

A new student resource has been created.

The response is of type object.