curl --request POST \
--url https://cucuniversity.edtools.co/api/resource/Quiz \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Data Structures Quiz",
"max_attempts": 3,
"grading_basis": "Last Highest Score",
"is_time_bound": 1,
"duration": 30,
"passing_score": 60,
"show_answers": 1,
"show_submission_history": 1,
"questions": [
{
"question": "What is Array?"
},
{
"question": "What is Linked List?"
}
]
}
'