Authorization: Bearer ********************curl --location 'http://localhost:3000/api/v1/personality-assessments/results' \
--header 'Authorization: Bearer <token>'{
"message": "Assessment results retrieved successfully",
"data": [
{
"id": 1,
"score": 15,
"percentage": 75.00,
"createdAt": "2023-04-12T12:34:56.789Z",
"updatedAt": "2023-04-12T12:34:56.789Z",
"category": {
"id": 1,
"name": "Extroversion",
"description": "Measures the degree of outgoingness and sociability."
},
"user": {
"id": 1,
"email": "john@example.com",
"userId": "abc123"
}
}
]
}