action iqualify_get_courses_content_id_activations { label: "Find activations for a contentId" description: "Responds with all activations for the contentId provided." provider: iqualify method: GET path: "/courses/{contentId}/activations" encoding: json input: { type: "object" properties: { contentId: { type: "string" } } required: ["contentId"] additionalProperties: false } output: { type: "object" properties: { end: { type: "string" } id: { type: "string" } info: { type: "string" } learnersCount: { type: "string" description: "number of learners in the offering, excluding facilitators and coaches" } metadata: { type: "object" properties: { rootContentId: { type: "string" } } } name: { type: "string" } start: { type: "string" } } } }