POST
/manager/quiz-answer
curl \
--request POST 'https://domain.tld/api/v2/manager/quiz-answer' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"images":[],"texts":[{"id_i18n_content":42,"lang":"en_GB","content":"Hello"}],"is_correct":"true","nb_votes":42}'
Request examples
{
"images": [],
"texts": [
{
"id_i18n_content": 42,
"lang": "en_GB",
"content": "Hello"
}
],
"is_correct": "true",
"nb_votes": 42
}
Response examples (201)
{
"id_quiz_answer": 42,
"images": [],
"texts": [],
"is_correct": "true",
"nb_votes": 42
}