{ "opencollection": "1.0.0", "info": { "name": "Skilljar Assets Courses API", "version": "1.0.0" }, "items": [ { "info": { "name": "Courses", "type": "folder" }, "items": [ { "info": { "name": "courses_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/courses", "params": [ { "name": "label__name", "value": "", "type": "query", "description": "Filter courses by exact match on label name" }, { "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." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "List all courses in your organization.\n\nReturns a paginated list of courses with details such as title, description, labels,\n creation and modification dates, and course time settings. Supports filtering by label name." }, { "info": { "name": "courses_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/courses", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new course.\n\nCreates a course with the provided details, including title, description, labels,\n and course time settings. Returns the created course object." }, { "info": { "name": "courses_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/courses/:course_id", "params": [ { "name": "course_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve a single course.\n\nReturns detailed information about a specific course, including title, description, labels,\n creation and modification dates, and course time settings." }, { "info": { "name": "courses_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/courses/:course_id", "params": [ { "name": "course_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update an existing course.\n\nUpdates the specified course with the provided data.\nSupports partial updates; only the fields you provide will be updated. Returns the updated course object." }, { "info": { "name": "courses_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/courses/:course_id", "params": [ { "name": "course_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Partially update a course.\n\nUpdates one or more fields of an existing course.\nOnly the fields you provide will be updated; all others remain unchanged. Returns the updated course object." }, { "info": { "name": "courses_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/courses/:course_id", "params": [ { "name": "course_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a course and its drafts.\n\nPermanently deletes the specified course and all associated draft versions.\nThis action cannot be undone. Returns a 204 No Content response if successful." } ] } ], "bundled": true }