POST
/platform/quiz/{id}/participate
curl \
--request POST 'https://domain.tld/api/v2/platform/quiz/{id}/participate' \
--header "Content-Type: application/json" \
--data '{"answer_ids":[42]}'
Request examples
{
"answer_ids": [
42
]
}
Response examples (200)
{
"message": "Quiz answered successfully"
}
Response examples (401)
{
"message": "Unauthorized."
}
Response examples (422)
{
"message": "field is required! (and 3 more error)",
"errors": {
"field": [
"Error message details here"
],
"additionalProperty1": [
"Error message details here"
],
"additionalProperty2": [
"Error message details here"
]
}
}