cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
376
Views
0
Helpful
1
Replies

How to get registration details for a webex webinar

Raffaele Lagana
Cisco Employee
Cisco Employee

Hello All , I have 2 questions as below:
Q1. We want to fetch Registration details and Attendance details for a WebEx webinar (Created by us ) .
Do we have any such utility in REST API to fetch these details ?

Q2. Also ,we want to do the same thing for WebEx Classic Events .
So I was wondering if we can fetch similar details from XML API ( for Webex Classic )

1 Accepted Solution

Raffaele Lagana
Cisco Employee
Cisco Employee

Hello,


Q1.
(a) For registration details, you can use these. They work for both meetings and webinars:

https://developer.webex.com/docs/api/v1/meetings/list-meeting-registrants 
https://developer.webex.com/docs/api/v1/meetings/get-registration-form-for-a-meeting

https://developer.webex.com/docs/api/v1/meetings/get-a-meeting-registrant's-detail-information 

You'll need the meetingId for these and you can get that through https://developer.webex.com/docs/api/v1/meetings/list-meetings 

 

(b) To get attendance details:
https://developer.webex.com/docs/api/v1/meeting-invitees/list-meeting-invitees (This is to get invitees who have not joined the meeting)

https://developer.webex.com/docs/api/v1/meeting-participants/list-meeting-participants (This is to get actual attendees, known as participants in the REST APIs)


Q2. 
To do the same with XML APIs:
You can check out the APIs seen here: https://developer.cisco.com/docs/webex-xml-api-reference-guide/#!meeting-attendee-service-overview . There are a number of APIs here to allow the same, such as GetEnrollmentInfo, RegisterMeetingAttendee, LstMeetingAttendee . Note all these will work with Classic Events and Trainings, as well as Meetings.

View solution in original post

1 Reply 1

Raffaele Lagana
Cisco Employee
Cisco Employee

Hello,


Q1.
(a) For registration details, you can use these. They work for both meetings and webinars:

https://developer.webex.com/docs/api/v1/meetings/list-meeting-registrants 
https://developer.webex.com/docs/api/v1/meetings/get-registration-form-for-a-meeting

https://developer.webex.com/docs/api/v1/meetings/get-a-meeting-registrant's-detail-information 

You'll need the meetingId for these and you can get that through https://developer.webex.com/docs/api/v1/meetings/list-meetings 

 

(b) To get attendance details:
https://developer.webex.com/docs/api/v1/meeting-invitees/list-meeting-invitees (This is to get invitees who have not joined the meeting)

https://developer.webex.com/docs/api/v1/meeting-participants/list-meeting-participants (This is to get actual attendees, known as participants in the REST APIs)


Q2. 
To do the same with XML APIs:
You can check out the APIs seen here: https://developer.cisco.com/docs/webex-xml-api-reference-guide/#!meeting-attendee-service-overview . There are a number of APIs here to allow the same, such as GetEnrollmentInfo, RegisterMeetingAttendee, LstMeetingAttendee . Note all these will work with Classic Events and Trainings, as well as Meetings.