action iqualify_post_offerings_offering_id_groups { label: "Add an assessment group" description: "Creates a new assessment group in an offering." provider: iqualify method: POST path: "/offerings/{offeringId}/groups" encoding: json input: { type: "object" required: ["title"] properties: { title: { type: "string" } } } output: { type: "object" properties: { createdAt: { type: "string" } id: { type: "string" } title: { type: "string" } } } }