Meeting Report Examples
This blog entry gives a brief introduction to a few of the most widely used meeting report XML APIs:
- meeting-report-sessions
- meeting-report-attendance
- meeting-report-summary
These are the same web service calls that are used to generate the reports underneath the meeting’s “Reports” section.
meeting-report-sessions
This provides a listing of all the meeting sessions that has occurred for this meeting.
Here’s an example of a call:
https://admin.adobe.acrobat.com/api/xml?action=report-meeting-sessions&sco-id=562370621
Here’s an example of what is returned:
<results>
<status code=”ok”/>
<report-meeting-sessions>
<row sco-id=”562370621″ asset-id=”514145395″ version=”6″ num-participants=”1″>
<date-created>2008-04-11T14:16:12.257-07:00</date-created>
<date-end>2008-04-11T14:24:30.680-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”518531296″ version=”8″ num-participants=”1″>
<date-created>2009-09-09T12:02:33.503-07:00</date-created>
<date-end>2009-09-09T13:40:17.550-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”522380740″ version=”4″ num-participants=”4″>
<date-created>2007-10-05T22:33:42.263-07:00</date-created>
<date-end>2007-10-05T23:45:14.783-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”552175403″ version=”1″ num-participants=”2″>
<date-created>2007-10-02T00:08:01.687-07:00</date-created>
<date-end>2007-10-02T00:38:46.427-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”567429809″ version=”7″ num-participants=”1″>
<date-created>2009-06-10T17:29:24.903-07:00</date-created>
<date-end>2009-06-10T18:37:53.137-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”572297138″ version=”2″ num-participants=”2″>
<date-created>2007-10-03T00:33:22.157-07:00</date-created>
<date-end>2007-10-03T01:48:39.427-07:00</date-end>
</row>
<row sco-id=”562370621″ asset-id=”572502857″ version=”5″ num-participants=”2″>
<date-created>2007-11-06T15:42:50.233-08:00</date-created>
<date-end>2007-11-06T16:31:43.997-08:00</date-end>
</row>
</report-meeting-sessions>
</results>
report-meeting-attendance
This provides a listing of all the meeting attendees for a meeting.
Here’s an example of a call:
https://admin.adobe.acrobat.com/api/xml?action=report-meeting-attendance&sco-id=562370621
Here’s an example of what is returned:
<results>
<status code=”ok”/>
<report-meeting-attendance>
<row transcript-id=”503691398″ sco-id=”562370621″ principal-id=”" answered-survey=”0″>
<session-name>john wong</session-name>
<sco-name>Adobe Connect</sco-name>
<date-created>2007-10-05T22:34:20.513-07:00</date-created>
<date-end>2007-10-05T22:56:48.350-07:00</date-end>
</row>
<row transcript-id=”512654662″ sco-id=”562370621″ principal-id=”" answered-survey=”0″>
<session-name>john wong</session-name>
<sco-name>Adobe Connect</sco-name>
<date-created>2007-10-02T00:09:02.810-07:00</date-created>
<date-end>2007-10-02T00:30:29.040-07:00</date-end>
</row>
<row transcript-id=”522380807″ sco-id=”562370621″ principal-id=”" answered-survey=”0″>
<session-name>john wong</session-name>
<sco-name>Adobe Connect</sco-name>
<date-created>2007-10-05T23:16:44.983-07:00</date-created>
<date-end>2007-10-05T23:25:02.463-07:00</date-end>
</row></results>
Since you know the start and end dates of specific meeting sessions from report-meeting-sessions, you could use filters to filter attendance based on session
meeting-report-summary
Here’s an example of a call:
https://admin.adobe.acrobat.com/api/xml?action=report-meeting-summary&sco-id=562370621
Here’s an example of what is returned:
<results>
<status code=”ok”/>
<report-meeting-summary num-unique-meetings=”8″ peak-users=”2″ num-invitees=”0″ num-invitees-attended=”0″ ispublic=”1″ num-guests-attended=”6″>
<most-recent-session>2009-09-09T12:02:49.940-07:00</most-recent-session>
</report-meeting-summary>
</results>