Authorization: Bearer ********************curl --location 'http://localhost:3000/api/v1/personality-assessments/questions?page=1&limit=10' \
--header 'Authorization: Bearer <token>'{
"message": "Questions retrieved successfully",
"data": {
"questions": [
{
"id": 1,
"content": "How would you describe yourself?",
"createdAt": "2023-04-12T12:34:56.789Z",
"updatedAt": "2023-04-12T12:34:56.789Z",
"options": [
{
"id": 1,
"text": "Outgoing and social",
"isCorrect": true,
"category": {
"id": 1,
"name": "Extroversion",
"description": "Measures the degree of outgoingness and sociability."
}
}
]
}
],
"total": 50
}
}