curl --location --request POST 'http://localhost:6567/api/v1/onboarding/quiz-responses' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"responses": [
{
"questionId": "q1",
"answer": "backend"
},
{
"questionId": "q2",
"answer": ["golang", "nodejs"]
}
]
}'{
"success": true,
"message": "Onboarding quiz responses saved successfully",
"onboardingCompleted": true
}