action iqualify_get_users_all_progress { label: "Find learner progress in all offerings" description: "Responds with all learners' progress in all offerings." provider: iqualify method: GET path: "/users/all/progress" encoding: json input: { type: "object" properties: { "$filter": { type: "string" } "$orderby": { type: "string" } "$top": { type: "string" } } additionalProperties: false } output: { properties: { data: { properties: { progress: { type: "array" items: { 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" } } } } } } top: { type: "integer" } } } }