Gooogle Classroom Script to add either Teachers or Students based on a list of emails in a google sheet.
I am getting an error "Requested Entity already exists" due to a user on the list already being a member of the classroom.
Question - Is there a way to check if an email address on the list in Col A or Col B is already a member, and skip if they are?
Or to wait until the error above comes back, then skip the error and continue through the list to invite all other users on the list?
Thanks Jon
function MultipleAccountInvite() {
var ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("1 Class Invite");
var CN = ss.getRange('B1').getValue();
var CourseId = parseInt(CN).toFixed();
Logger.log(CourseId);
var Avals = ss.getRange(3, 1,20).getValues();
var Alast = Avals.filter(String).length;
Logger.log(Avals)
Logger.log(Alast)
var Bvals = ss.getRange('B3:B').getValues();
var Blast = Bvals.filter(String).length;
Logger.log(Bvals)
Logger.log(Blast)
for (var i = 0; i < Alast; i++) {
var teachers = Avals[i][0];
if (teachers) {
var inviteteachers = Classroom.Invitations.create({
"courseId": CourseId,
"userId": teachers,
"role": "TEACHER"
})
}
}
for (var j = 0; j < Blast; j++) {
var students = Bvals[j][0];
if (students) {
var invitestudents = Classroom.Invitations.create({
"courseId": CourseId,
"userId": students,
"role": "STUDENT"
})
}
}
}
I believe your situation and goal as follows.
Issue and workaround:
In your case, the error occurs at the following situations.
students
of"userId": students,
has already been joined tocourseId
.students
of"userId": students,
has already been invited, but the user has not joined tocourseId
.About 1, the existing students can be checked using the method of "courses.students.list". But about 2, when the invitation list is retrieved with the method of "invitations.list", the invitation ID, which is
Identifier of the invited user.
in the official document, is not the email address. Although the values returned fromClassroom.Invitations.create()
include the ID. But in your situation, I'm worry that several students have already been invited and the ID is not saved.From these situation, I would like to propose a workaround for achieving your goal. In this workaround,
try catch
is used. By this, when the error occurs, the error can be skipped.When this workaround is reflected to your script, it becomes as follows.
Modified script:
From:
To:
studentData
. About the students who have already been invited but not been joined, they are checked usingtry catch
.Note:
Classroom.Invitations.create()
returns{"courseId":"###","role":"STUDENT","id":"###"}
. So when thisid
is saved, you can checkid
has already been invited. But after the student was invited, whenid
is not known, I couldn't find the method for creatingid
. So I proposed above modification.References:
Added:
From
Problem with this line. Am getting an errorTypeError:cannot read property 'reduce' of undefined:--- var studentData = Classroom.Courses.Students.list(CourseId).students.reduce(callback, initialValue)((o, e) => Object.assign(o, {[e.profile.emailAddress]: true}), {}); var response = [];
in your replying, it seems that in your case, there are no existing students. In this case, how about the following modified script?Modified script:
From: To:Added:
From Iamblichus's comment, I added
try catch
for the invitation requests both the teacher and student.Modified script:
From: To: