-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas_update_student_sections.ps1
58 lines (42 loc) · 2.59 KB
/
canvas_update_student_sections.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
$token = "<TOKEN>"
$headers = @{"Authorization"="Bearer "+$token}
##############################################################################################################
$courseId = 3301
# Synergy IDs of students who will be assigned a new section.
$students = '33417', '19910', '29861', '23126', '34223', '34267', '34444', '21231', '33200', '32851', '30743',
'26055', '32670', '36065', '36426', '36008', '25821', '21861', '35082', '24629', '30173', '28584', '33986', '34811', '33426'
$newSectionId = 3377
##############################################################################################################
# Get a list of all student enrollments for the course.
$response = Invoke-RestMethod `
-URI "https://<HOSTNAME>:443/api/v1/courses/$courseId/enrollments?type[]=StudentEnrollment" `
-Headers $headers `
-Method GET `
-FollowRelLink
# Because of pagination, $RESPONSE will often contain a multidimensional array, with one
# element for each page. Each page in turn contains multiple objects, which are the results of the query.
# This is a shortcut to get an array of all enrollment objects in the multidimensional array.
$enrollments = $response | ForEach-Object {$_}
Write-host "Got $($enrollments.length) student enrollments for course ID $courseId."
# Note that if a student has been enrolled incorrectly in two sections, this will result in TWO enrollments.
# Both will be deleted here, and the student will be re-enrolled twice (into the correct section).
# Enrolling the student twice here is not a problem because it will only result in a single final enrollment.
foreach($enrollment in $enrollments){
if ($students.Contains($enrollment.sis_user_id)) {
Write-Host "Student with SIS id $($enrollment.sis_user_id) will be updated to new section $newSectionId."
# First delete the existing enrollment for the student.
$response = Invoke-RestMethod `
-URI "https://<HOSTNAME>:443/api/v1/courses/$courseId/enrollments/$($enrollment.id)?task=delete" `
-Headers $headers `
-Method DELETE
# Now re-enrol the student to the required section.
$uri = "https://<HOSTNAME>:443/api/v1/sections/$newSectionId/enrollments?" `
+ "enrollment[user_id]=$($enrollment.user_id)" `
+ "&enrollment[course_section_id]=$newSectionId" `
+ "&enrollment[enrollment_state]=active"
$response = Invoke-RestMethod `
-URI $uri `
-Headers $headers `
-Method POST
}
}