action iqualify_get_courses_content_id_permissions { label: "Find users who have access to the contentId provided" description: "Responds with users who have access to a specific course by contentId." provider: iqualify method: GET path: "/courses/{contentId}/permissions" encoding: json input: { type: "object" properties: { contentId: { type: "string" } } required: ["contentId"] additionalProperties: false } output: { properties: { email: { type: "string" } isBuilder: { type: "boolean" } isReviewer: { type: "boolean" } name: { type: "string" } } } }