action iqualify_post_offerings_offering_id_groups_group_id_learners { label: "Add a learner to an assessment group" description: "Adds a learner into the specified assessment group." provider: iqualify method: POST path: "/offerings/{offeringId}/groups/{groupId}/learners" encoding: json input: { type: "object" properties: { email: { type: "string" } } } output: { type: "object" properties: { avatarUrl: { type: "string" } email: { type: "string" format: "email" } firstAccessAt: { type: "string" format: "date-time" } firstName: { type: "string" } id: { type: "string" } invite: { type: "object" properties: { url: { type: "string" description: "if sendInvite in request is false" } } } lastAccessAt: { type: "string" format: "date-time" } lastName: { type: "string" } metadata: { type: "object" properties: { tags: { type: "array" items: { type: "string" } } } additionalProperties: false } personId: { type: "string" } profile: { type: "object" properties: { displayName: { type: "string" } mobile: { type: "string" } } } } } }