Bulk Import Questions

Upload JSON File for Bulk Import

Upload a JSON file containing multiple questions with their IDs to update them in bulk.

📋 Need a template? Download JSON Template - Contains sample questions with proper formatting

Expected JSON Format:

{
  "questions": [
    {
      "question_id": 123,
      "question": "$\\text{Which of the following is not required in photosynthesis?}$",
      "options": [
        {
          "id": 1,
          "text": "$\\text{chlorophyll}$"
        },
        {
          "id": 2,
          "text": "$\\text{Light}$"
        },
        {
          "id": 3,
          "text": "$\\text{CO}_2$"
        },
        {
          "id": 4,
          "text": "$\\text{O}_2$"
        }
      ],
      "solution": "Solution explanation with LaTeX support...",
      "correct_answer": 4
    },
    {
      "question_id": 124,
      "question": "Another question...",
      "options": [...],
      "solution": "Solution...",
      "correct_answer": 2
    }
  ]
}