Update an existing exam question. Can modify question text, options, correct answers, or scoring.
PATCH
/api/v1/exam/{id}/question/{questionId}
curl \
--request PATCH 'https://api.echoplain.social/api/v1/exam/123e4567-e89b-12d3-a456-426614174000/question/q123-456' \
--header "Content-Type: application/json" \
--data '{"question":"string","type":"STRUCTURED","options":["string"],"correctAnswers":["string"],"maxScore":42.0}'
Request examples
{
"question": "string",
"type": "STRUCTURED",
"options": [
"string"
],
"correctAnswers": [
"string"
],
"maxScore": 42.0
}
Response examples (200)
{
"message": "Question updated successfully",
"success": true
}