{ "opencollection": "1.0.0", "info": { "name": "Skilljar Assets Quiz Questions API", "version": "1.0.0" }, "items": [ { "info": { "name": "Quiz Questions", "type": "folder" }, "items": [ { "info": { "name": "quiz_questions_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/quiz-questions", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new quiz question.\n\nRequired fields:\n- `quiz` or `question_bank`: The ID of the quiz or question bank to associate the question with.\n- `html`: The HTML content of the question.\n- `type`: The type of question.\n- `answers`: List of possible answers (for applicable question types)." }, { "info": { "name": "quiz_questions_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/quiz-questions/:question_id", "params": [ { "name": "question_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve the details of a specific quiz question by its ID." }, { "info": { "name": "quiz_questions_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/quiz-questions/:question_id", "params": [ { "name": "question_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update an existing quiz question.\n\nAllows modification of question content, type, and answers." }, { "info": { "name": "quiz_questions_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/quiz-questions/:question_id", "params": [ { "name": "question_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Manage quiz questions for your organization.\n\nThis endpoint allows you to create, retrieve, update, and delete questions for quizzes or question banks.\nQuestions can be of various types, such as multiple choice or true/false,\n and must be associated with either a quiz or a question bank.\n\nQuestion types:\n- `MULTIPLE_CHOICE`\n- `TRUE_FALSE`\n- `SHORT_ANSWER`" }, { "info": { "name": "quiz_questions_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/quiz-questions/:question_id", "params": [ { "name": "question_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a Question.\n\nPermanently removes the question from the quiz or question bank." } ] } ], "bundled": true }