@racheleve_davis
You can use GraphQL, the playground is available at https://yourschool.instructure.com/graphiql . The following query will list all assignments within a course and whether a rubric is associated and if they're being used for grading
query MyQuery {
allCourses {
name
assignmentsConnection {
nodes {
name
rubric {
title
}
rubricAssociation {
useForGrading
}
}
}
}
}
However, "allCourses" endpoint will be limited to courses that you're enrolled into (either as a teacher or student).
In order to get account-wide data without Canvas Data, you'll need to write a program and provide it with the list of all courses IDs to loop through and filter the data.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.