I am using .Net sdk of GoToMeeting.
I want to get meetings organized by particular organizer.
I have tried using
MeetingsApi.getHistoryMeetings but it does not return me OrganizerKey so I can not filter on particular Organizer.
Is there any way to get meeting(s) based on organizer or even by Attendee email ID by using .Net SDK?
What is the problem you are facing with
MeetingsApi.getHistoryMeetings();?why you need to filter the method, the
MeetingsApi.getHistoryMeetings(accessToken,true,date1,date2);itself filtered for a particular user right?Look on the arguments we are passing in the method?
directloginorOauthmethod.below code is the sample for getting history meetings.
try it out... The above code will store the meetings in
historymeetscollection object.You can do the filter function in that collection object.
UPDATE :
for comment - It is possible, but not directly because there is no api calls, which supports the
meeting by attendee. the above code which i have written is formeeting by organizer. Now you have two options,getHistoryMeetings, now you got the meeting details right? , then get the attendees by meeting id usinggetAttendeesByMeetings(), filter the two different collection objects withjoinusing LINQ. OR