action iqualify_get_offerings_offering_id_users { label: "Find offering's users" description: "Responds with a list of users in the offering (facilitators, learners and markers.)." provider: iqualify method: GET path: "/offerings/{offeringId}/users" encoding: json input: { type: "object" properties: { facilitators: { type: "string" enum: ["true", "false"] } learners: { type: "string" enum: ["true", "false"] } markers: { type: "string" enum: ["true", "false"] } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { avatarUrl: { type: "string" } email: { type: "string" format: "email" } evaluatedBy: { type: "array" items: { type: "string" } } evaluates: { type: "array" items: { type: "string" } } firstName: { type: "string" } id: { type: "string" } isFacilitator: { type: "boolean" } isMarker: { type: "boolean" } isReadonly: { type: "boolean" } lastName: { type: "string" } markedBy: { type: "array" items: { type: "string" } } marks: { type: "array" items: { type: "string" } } personId: { type: "string" } profile: { type: "object" properties: { displayName: { type: "string" } mobile: { type: "string" } } } } } } }