hivelearn_create_quiz_question
Add a question to a quiz. For multiple_choice: pass options as an array of { text, is_correct } objects — at least one must be is_correct:true. For true_false: omit options and set correct_answer (boolean).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| points | No | Defaults to 1 | |
| options | No | For multiple_choice only; shape: [{text, is_correct}] | |
| quiz_id | Yes | ||
| sort_order | No | ||
| explanation | No | ||
| question_text | Yes | ||
| question_type | Yes | ||
| correct_answer | No | For true_false only |