action iqualify_get_offerings_summary { label: "Offerings summary" description: "Responds with a summary of all offerings for your organisation." provider: iqualify method: GET path: "/offerings/summary" encoding: json input: { type: "object" properties: { "$filter": { type: "string" } "$orderby": { type: "string" } "$top": { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { contentId: { type: "string" } end: { type: "string" format: "date-time" } id: { type: "string" } info: { type: "string" } learnersCount: { type: "number" description: "number of learners in the offering, excluding facilitators and coaches" } metadata: { type: "object" properties: { rootContentId: { type: "string" } } } name: { type: "string" } start: { type: "string" format: "date-time" } } } } }