Authorization: Bearer ********************{
"content": "What is your preferred approach when faced with a challenging team conflict?",
"options": [
{
"text": "Facilitate a group discussion to find common ground",
"categoryId": 1
},
{
"text": "Analyze the situation and propose a logical solution",
"categoryId": 2
},
{
"text": "Listen to all perspectives before making a decision",
"categoryId": 3
},
{
"text": "Take charge and make quick decisions to resolve the issue",
"categoryId": 4
}
]
}curl --location 'http://localhost:3000/api/v1/personality-assessments/questions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"content": "What is your preferred approach when faced with a challenging team conflict?",
"options": [
{
"text": "Facilitate a group discussion to find common ground",
"categoryId": 1
},
{
"text": "Analyze the situation and propose a logical solution",
"categoryId": 2
},
{
"text": "Listen to all perspectives before making a decision",
"categoryId": 3
},
{
"text": "Take charge and make quick decisions to resolve the issue",
"categoryId": 4
}
]
}'{
"message": "Question created successfully",
"data": {
"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."
}
}
]
}
}