action iqualify_get_users_user_email_progress { label: "Find learner's progress in offerings" description: "Responds with the specified learner's progress in all offerings." provider: iqualify method: GET path: "/users/{userEmail}/progress" encoding: json output: { type: "object" properties: { email: { type: "string" } firstName: { type: "string" } id: { type: "string" } lastName: { type: "string" } offerings: { type: "array" items: { type: "object" properties: { completion: { type: "string" } id: { type: "string" } } } } personId: { type: "string" } } } }