action iqualify_delete_offerings_offering_id_users_marker_email_marks { label: "Remove learners from coach's marking list" description: "Removes an array of learners from coach's marking list." provider: iqualify method: DELETE path: "/offerings/{offeringId}/users/{markerEmail}/marks" encoding: json input: { type: "object" properties: { markerEmail: { type: "string" } } required: ["markerEmail"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["email"] properties: { email: { type: "string" } firstName: { type: "string" } isFacilitator: { type: "boolean" } isMarker: { type: "boolean" } isReadonly: { type: "boolean" } 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" } } } sendInvite: { type: "boolean" } sendNotificationEmail: { type: "boolean" } } additionalProperties: false } } }