Download OpenAPI specification:Download
Core API for the Requests and Responses Exercise
Add a new student to the list
| firstName required | string |
| lastName required | string |
{- "firstName": "Nathan",
- "lastName": "King"
}{- "firstName": "Nathan",
- "lastName": "King"
}Update a student's details using the firstName provided. Just update the first student found in the list with the provided first name.
| firstName required | string The first name of the student to update |
| firstName required | string |
| lastName required | string |
{- "firstName": "Nathan",
- "lastName": "King"
}{- "firstName": "Nathan",
- "lastName": "King"
}Update a language's name. Just update the first language found in the list with the provided name.
| name required | string The name of the language to update |
| name required | string |
{- "name": "Java"
}{- "name": "Java"
}