{ "opencollection": "1.0.0", "info": { "name": "Skilljar Assets Question Banks > Questions API", "version": "1.0.0" }, "items": [ { "info": { "name": "Question Banks > Questions", "type": "folder" }, "items": [ { "info": { "name": "question_banks_questions_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/question-banks/:question_bank_id/questions", "params": [ { "name": "page", "value": "", "type": "query", "description": "A page number within the paginated result set." }, { "name": "page_size", "value": "", "type": "query", "description": "Number of results to return per page." }, { "name": "question_bank_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "List all Questions for the specified Question Bank.\n\nReturns a paginated list of Questions associated with the Question Bank." }, { "info": { "name": "question_banks_questions_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/question-banks/:question_bank_id/questions/:question_id", "params": [ { "name": "question_bank_id", "value": "", "type": "path" }, { "name": "question_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve details for a specific Question.\n\nReturns all metadata for the Question, including Answers." }, { "info": { "name": "question_banks_questions_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/question-banks/:question_bank_id/questions/:question_id", "params": [ { "name": "question_bank_id", "value": "", "type": "path" }, { "name": "question_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a specific Question from the Question Bank.\n\nThis will remove the Question and all associated Answers." } ] } ], "bundled": true }