/get-grades
Retrieve the graded results for a specific quiz by ID. Filter by student using a primaryKey.
Parameter
Type
Description
// Example to get grades
fetch("https://api.arlinear.com/functions/v1/get-grades", {
method: "POST",
headers: {
Authorization: "<Your API Key>",
},
body: JSON.stringify({
quizId: "ba777045-7033-4701-b17b-da9e90dcd41e",
primaryKey: "emily@school.com", // optional: if no PK is passed, we will fetch ALL submissions for this quiz
}),
});Last updated