action iqualify_get_offerings_offering_id_assessments { label: "Find offering's assessments" description: "Responds with all assessments in an offering matching the offeringId." provider: iqualify method: GET path: "/offerings/{offeringId}/assessments" encoding: json output: { type: "array" items: { type: "object" properties: { content: { type: "string" } documents: { type: "array" items: { type: "object" properties: { createdAt: { type: "string" format: "date-time" } filename: { type: "string" } id: { type: "string" } mimetype: { type: "string" } size: { type: "integer" format: "int64" } url: { type: "string" } } } } dueDate: { type: "string" format: "date-time" } durationMinutes: { type: "integer" format: "int32" } filename: { type: "string" } hidden: { type: "boolean" } id: { type: "string" } markNumber: { type: "string" } markType: { type: "string" } maxAttempts: { type: "integer" format: "int32" } openDate: { type: "string" format: "date-time" } pid: { type: "string" } points: { type: "string" } themes: { type: "array" items: { type: "object" properties: { filter: { type: "string" } numberOfQuestions: { type: "string" } } } } title: { type: "string" } totalQuestions: { type: "integer" format: "int32" } totalThemes: { type: "integer" format: "int32" } type: { type: "string" } } } } }