Update exam information such as title, description, timing, or scoring settings. Only admins and lecturers can update exams.
PATCH
/api/v1/exam/{id}
curl \
--request PATCH 'https://api.echoplain.social/api/v1/exam/123e4567-e89b-12d3-a456-426614174000' \
--header "Content-Type: application/json" \
--data '{"title":"Updated Midterm Exam - Data Structures","description":"Updated description"}'
Request examples
Update title
{
"title": "Updated Midterm Exam - Data Structures",
"description": "Updated description"
}
{
"endTime": "2025-11-21T11:30:00Z",
"startTime": "2025-11-21T09:00:00Z",
"durationMinutes": 150
}
Response examples (200)
{
"exam": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"title": "Updated Midterm Exam - Data Structures"
},
"message": "Exam updated successfully",
"success": true
}