Authorization: Bearer ********************curl --location 'http://localhost:3000/api/v1/scenario-assessments/questions/' \
--header 'Authorization: Bearer <token>'{
"message": "Question retrieved successfully",
"data": {
"id": 9,
"scenario": "What is the capital of France?",
"content": "Choose the correct answer from the options below.",
"createdAt": "2025-01-23T13:39:52.740Z",
"updatedAt": "2025-01-23T13:39:52.740Z",
"options": [
{
"id": 48,
"text": "Madrid",
"isCorrect": false,
"questionId": 9
},
{
"id": 49,
"text": "Paris",
"isCorrect": true,
"questionId": 9
}
]
}
}