action iqualify_get_offerings_offering_id_analytics_marks_quizzes { label: "Find quiz marks" description: "Responds with all learner quiz marks in an offering matching the offeringId." provider: iqualify method: GET path: "/offerings/{offeringId}/analytics/marks/quizzes" encoding: json output: { type: "array" items: { type: "object" properties: { attempts: { type: "integer" format: "int32" } lastAttemptAt: { type: "string" format: "date-time" } learnerEmail: { type: "string" } learnerFullname: { type: "string" } learnerPersonId: { type: "string" } mark: { type: "string" } quizId: { type: "string" } quizTitle: { type: "string" } } } } }