The Instructure Community will enter a read-only state on November 22, 2025 as we prepare to migrate to our new Community platform in early December. Read our blog post for more info about this change.
Found this content helpful? Log in or sign up to leave a like!
Is there a way to manage comment library in the Blueprint course?
I used my old course and then created a blueprint from that course. Then 3 of us use the blueprint course for our individual cohorts. I tried to go to Speedgrader but the blueprint has no students. When I am in the linked class - I can see my comment library.
Is there a way to have this comment library load for other teachers? Are the comments in the actual course settings or are they in my settings only for me?
Thanks
Solved! Go to Solution.
The Comment Library is saved on each user account (not course), making the saved comments personal to that user only.
If you have admin permission to masquerade as another user, you can add comments for them in their Comment Library.
Furthermore, you can load the comments for them programmatically (in bulk) using GraphQL, provided you have admin access and masquerade permissions. You can make an API call to this endpoint (https://canvas.instructure.com/doc/api/file.graphql.html) with the following payload
mutation MyMutation {
__typename
createCommentBankItem(input: {courseId: "A_VALID_COURSE_ID", comment: "comment to be loaded here"})
}
If you need help with a script to do this, feel free to reach out.
The Comment Library is saved on each user account (not course), making the saved comments personal to that user only.
If you have admin permission to masquerade as another user, you can add comments for them in their Comment Library.
Furthermore, you can load the comments for them programmatically (in bulk) using GraphQL, provided you have admin access and masquerade permissions. You can make an API call to this endpoint (https://canvas.instructure.com/doc/api/file.graphql.html) with the following payload
mutation MyMutation {
__typename
createCommentBankItem(input: {courseId: "A_VALID_COURSE_ID", comment: "comment to be loaded here"})
}
If you need help with a script to do this, feel free to reach out.
Community helpTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign inTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign in