action getgo_get_attendance_details { label: "Get Attendance Details" description: "This call retrieves a list of registrants from a specific completed training session. The response includes the registrants' email addresses, and if they attended, it includes the duration of each period of their attendance in minutes, and the times at which they joined and left. If a registrant does not attend, they appear at the bottom of the listing with timeInSession = 0." provider: getgo method: GET path: "/reports/organizers/{organizerKey}/sessions/{sessionKey}/attendees" encoding: json input: { type: "object" properties: { sessionKey: { type: "string" } } required: ["sessionKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }