action iqualify_post_courses_root_content_id_permissions_user_email { label: "Update course access" description: "Provide a user with access to a specific course by rootContentId." provider: iqualify method: POST path: "/courses/{rootContentId}/permissions/{userEmail}" encoding: json input: { type: "object" properties: { isBuilder: { type: "boolean" } isReviewer: { type: "boolean" } rootContentId: { type: "string" } userEmail: { type: "string" } } required: ["rootContentId", "userEmail"] additionalProperties: false } output: { type: "object" properties: { contentId: { type: "string" } } } }