Posts

Showing posts from November, 2018

For Instructors: Options for Catalog Listings

Image
There are several mandatory and optional settings that the E-Learning admins will need in order to list your course in Canvas Catalog . This document was written to help you understand those settings, and what impact they will have on your course listing. Required fields Listing Title: The title you want for your course (see first image below) Listing Path: A unique name for your course, for use in a URL. This must be loser case letters, numerals, and dashes only. Teaser: This is a short description to entice users to sign up for your course ( see Listing Image below ) Full Description : This is a long description about your course ( see Details Image below ) Please Note: "Teaser" is only used on the Listing Image, and the Listing Image is only used if "Visibility" is set to public  (see below) . Optional Fields Enrollment Cap and Wait List: Give a number listing the maximum number of students you want in the course at once, and whether you want users

For Admins: Running a Postman Collection

If there are multiple iterations of a single API call, each with different parameters, it makes sense to use a PostMan collection to automate those calls. For example, this course: https://uth.test.instructure.com/courses/26911 We want to undelete ten enrollments from a section in this course. The undelete command is: POST https://uth.test.instructure.com/api/v1/sections/26959/enrollments?enrollment[user_id]=5227&enrollment[enrollment_state]=active But the enrollments we want to undelete (by user id) are: 5227, 10564, 106, 10697, 12375, 12715, 1305, 1307, 1327, 1441 Step 1: Create a data file (csv) that looks like this: userid 5227 10564 106 10697 12375 12715 1305 1307 1327 1441 Step 2: Move the POST command to its own folder in PostMan. It will be the sole API call in that folder/collection Step 3: Modify the POST command to: POST https://uth.test.instructure.com/api/v1/sections/26959/enrollments?enrollment[user_id]={{userid}}&enr