action iqualify_get_offerings_offering_id_analytics_learners_progress { label: "Find learner progress in a specified offering" description: "Responds with all learner progress in the offering." provider: iqualify method: GET path: "/offerings/{offeringId}/analytics/learners-progress" encoding: json output: { type: "array" items: { type: "object" properties: { completion: { type: "string" } courseId: { type: "string" } email: { type: "string" } firstName: { type: "string" } lastLoggedInAt: { type: "string" format: "date-time" } lastName: { type: "string" } personId: { type: "string" } } } } }