{
"content": "What is the capital of France?",
"typeId": 1,
"mark": 5,
"difficultyLevel": "easy",
"options": [
{ "text": "Paris", "isCorrect": true },
{ "text": "Lyon", "isCorrect": false },
{ "text": "Marseille", "isCorrect": false }
]
}curl --location --request PATCH 'http://localhost:3000/api/v1/questions/50/assessments/1' \
--header 'Content-Type: application/json' \
--data '{
"content": "What is the capital of France?",
"typeId": 1,
"mark": 5,
"difficultyLevel": "easy",
"options": [
{ "text": "Paris", "isCorrect": true },
{ "text": "Lyon", "isCorrect": false },
{ "text": "Marseille", "isCorrect": false }
]
}'{
"message": "Question updated successfully",
"data": {
"id": 22,
"typeId": 1,
"assessmentId": 1,
"content": "What is the capital of France?",
"mark": 5,
"difficultyLevel": "easy",
"createdAt": "2025-02-07T07:29:10.842Z",
"updatedAt": "2025-02-07T07:29:10.842Z",
"options": [
{
"id": 69,
"questionId": 22,
"text": "Paris",
"isCorrect": true,
"createdAt": "2025-02-07T07:29:10.842Z",
"updatedAt": "2025-02-07T07:29:10.842Z"
},
{
"id": 70,
"questionId": 22,
"text": "Lyon",
"isCorrect": false,
"createdAt": "2025-02-07T07:29:10.842Z",
"updatedAt": "2025-02-07T07:29:10.842Z"
},
{
"id": 71,
"questionId": 22,
"text": "Marseille",
"isCorrect": false,
"createdAt": "2025-02-07T07:29:10.842Z",
"updatedAt": "2025-02-07T07:29:10.842Z"
}
]
}
}