action iqualify_post_users_user_email_offerings { label: "Adds the user to the specified offerings as a learner" description: "Adds a user to an array of offerings by offeringId." provider: iqualify method: POST path: "/users/{userEmail}/offerings" encoding: json input: { type: "array" items: { type: "string" } } output: { type: "array" items: { type: "object" properties: { contentId: { type: "string" } coverImageUrl: { type: "string" } currency: { type: "string" } description: { type: "string" } earlyCloseOffDate: { type: "string" format: "date-time" } end: { type: "string" format: "date-time" } enrollmentLimit: { type: "number" } hasEarlyCloseOff: { type: "boolean" } id: { type: "string" } identifier: { type: "string" } isReadonly: { type: "boolean" } metadata: { type: "object" properties: { category: { type: "string" } level: { type: "string" } rootContentId: { type: "string" } tags: { type: "array" items: { type: "string" } } topic: { type: "string" } } additionalProperties: false } name: { type: "string" } overview: { type: "string" description: "content can contain html" } price: { type: "number" } start: { type: "string" format: "date-time" } tasksEnabled: { type: "boolean" } trailerVideoUrl: { type: "string" } useRelativeDates: { type: "boolean" } } } } }