create_new_quiz.hurl 272 B

12345678910
  1. POST http://localhost:3000/quizzes
  2. {
  3. "question": {"text": "Text of Question 1"},
  4. "answers": [
  5. {"text": "Text of the answer 1", "correct": true},
  6. {"text": "Text of the answer 2"},
  7. {"text": "Text of the answer 3"},
  8. {"text": "Text of the answer 4"}
  9. ]
  10. }