action iqualify_put_courses_content_id_metadata_category { label: "Update course category" description: "Add or update course category in the metadata of a course." provider: iqualify method: PUT path: "/courses/{contentId}/metadata/category" encoding: json input: { type: "object" properties: { category: { type: "string" } contentId: { type: "string" } } required: ["contentId"] additionalProperties: false } output: { type: "object" properties: { coverImageUrl: { type: "string" } createdAt: { type: "string" format: "date-time" } id: { type: "string" } metadata: { properties: { category: { type: "string" } learning_outcomes: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "string" } } } } level: { type: "string" } rootContentId: { type: "string" } tags: { type: "array" items: { type: "string" } } topic: { type: "string" } } } name: { type: "string" } tasksEnabled: { type: "boolean" } } } }