GetMeeting

GetMeeting returns detailed information about a specified meeting.

The result and exceptionID global elements confirm whether a setMeeting request was successful. These elements are described in Global Response Elements Showing Results and Errors.

The autoRecord element identifies meetings that are automatically recorded. autoRecord governs whether a meeting is automatically recorded if Automatically record all sessions using Network-Based Recording is not enabled (checked) on the Site Admin page. If the latter is enabled, it overrides autoRecord.

GetMeeting also returns information about whether or not attendees can join the teleconference before the host does. This functionality is a part of the schedule element. This functionality is part of the schedule element and controlled by the joinTeleconfBeforeHost element. It provides support for:

  • Cisco Unified MeetingPlace audio conferencing.
  • Join Before Host Telephony for TSP and MP audio conferencing sessions.

For sipURL, the link returned supports Webex video platform version 1.0 or later (CMR version 3.0 or later) for meetings.

Note

Site administrators or regular hosts can only get information for meeting sessions scheduled or owned by themselves. An exceptionID of 000001 is returned if a user requests information for sessions scheduled by other hosts.

For descriptions of the global elements in the security context of the request header, see Global Request Elements in Security Context. For descriptions of the non-global elements, refer to Elements in WebEx XML Schema Definitions for the Meeting Service.

Request

The following schema diagram shows the structure of the elements in a getMeeting request message.

Schema Diagram for getMeeting

The XML code below shows a sample request that requests a meeting with the meetingKey value of 48591508.

<?xml version="1.0" encoding="ISO-8859-1"?>
<serv:message
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:serv="http://www.webex.com/schemas/2002/06/service">
    <header>
        <securityContext>
            <siteName>demosite</siteName>
            <webExID>demouser</webExID>
            <password>P@ssw0rd</password>
        </securityContext>
    </header>
    <body>
        <bodyContent xsi:type="java:com.webex.service.binding.meeting.GetMeeting">
            <meetingKey>888888888</meetingKey>
        </bodyContent>
    </body>
</serv:message>

Response

The following schema diagram shows the structure of the elements in a getMeetingResponse message.

: Schema Diagram for getMeetingResponse

The sample XML code below shows a possible response to a getMeeting request such as the one above.

<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Created with Liquid Studio 2018 (https://www.liquid-technologies.com) -->
<serv:message 
    xmlns:serv="http://www.webex.com/schemas/2002/06/service"
    xmlns:com="http://www.webex.com/schemas/2002/06/common"
    xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
    xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
    <serv:header>
        <serv:response>
            <serv:result>SUCCESS</serv:result>
            <serv:gsbStatus>PRIMARY</serv:gsbStatus>
        </serv:response>
    </serv:header>
    <serv:body>
        <serv:bodyContent
            xsi:type="meet:getMeetingResponse"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <meet:accessControl>
                <meet:listToPublic>false</meet:listToPublic>
                <meet:isPublic>false</meet:isPublic>
                <meet:meetingPassword>P@ssW0rd</meet:meetingPassword>
            </meet:accessControl>
            <meet:metaData>
                <meet:confName>Demo Conference</meet:confName>
                <meet:meetingType>3</meet:meetingType>
                <meet:agenda>Test</meet:agenda>
                <meet:invitation></meet:invitation>
                <meet:isInternal>false</meet:isInternal>
            </meet:metaData>
            <meet:participants>
                <meet:maxUserNumber>2000</meet:maxUserNumber>
                <meet:attendees>
                    <meet:attendee>
                        <att:person>
                            <com:name>attendee1</com:name>
                            <com:firstName>Attendee</com:firstName>
                            <com:address>
                                <com:addressType>PERSONAL</com:addressType>
                            </com:address>
                            <com:phones>
                                <com:phone>1,,,,,,</com:phone>
                            </com:phones>
                            <com:email>demouser@qa.webex.com</com:email>
                            <com:type>VISITOR</com:type>
                        </att:person>
                        <att:contactID>1234567890</att:contactID>
                        <att:joinStatus>ACCEPT</att:joinStatus>
                        <att:meetingKey>888888888</att:meetingKey>
                        <att:language>ENGLISH</att:language>
                        <att:role>ATTENDEE</att:role>
                        <att:languageID>1</att:languageID>
                    </meet:attendee>
                    <meet:attendee>
                        <att:person>
                            <com:name>attendee2</com:name>
                            <com:firstName>Attendeetwo</com:firstName>
                            <com:address>
                                <com:addressType>PERSONAL</com:addressType>
                            </com:address>
                            <com:phones>
                                <com:phone>1,,,,,,</com:phone>
                            </com:phones>
                            <com:email>demouser2@qa.webex.com</com:email>
                            <com:type>VISITOR</com:type>
                        </att:person>
                        <att:contactID>1122334455</att:contactID>
                        <att:joinStatus>ACCEPT</att:joinStatus>
                        <att:meetingKey>888888888</att:meetingKey>
                        <att:language>TRADITIONAL CHINESE</att:language>
                        <att:role>ATTENDEE</att:role>
                        <att:languageID>4</att:languageID>
                    </meet:attendee>
                    <meet:attendee>
                        <att:person>
                            <com:name>attendeeab</com:name>
                            <com:firstName>Attendeeab</com:firstName>
                            <com:address>
                                <com:addressType>PERSONAL</com:addressType>
                            </com:address>
                            <com:phones/>
                            <com:email>demouserab@qa.webex.com</com:email>
                            <com:type>VISITOR</com:type>
                        </att:person>
                        <att:contactID>1112223334</att:contactID>
                        <att:joinStatus>ACCEPT</att:joinStatus>
                        <att:meetingKey>888888888</att:meetingKey>
                        <att:language>ENGLISH</att:language>
                        <att:role>ATTENDEE</att:role>
                        <att:languageID>1</att:languageID>
                    </meet:attendee>
                </meet:attendees>
            </meet:participants>
            <meet:enableOptions>
                <meet:chat>true</meet:chat>
                <meet:poll>true</meet:poll>
                <meet:audioVideo>true</meet:audioVideo>
                <meet:attendeeList>true</meet:attendeeList>
                <meet:fileShare>true</meet:fileShare>
                <meet:presentation>true</meet:presentation>
                <meet:applicationShare>true</meet:applicationShare>
                <meet:desktopShare>true</meet:desktopShare>
                <meet:webTour>true</meet:webTour>
                <meet:meetingRecord>true</meet:meetingRecord>
                <meet:annotation>false</meet:annotation>
                <meet:importDocument>false</meet:importDocument>
                <meet:saveDocument>false</meet:saveDocument>
                <meet:printDocument>false</meet:printDocument>
                <meet:pointer>false</meet:pointer>
                <meet:switchPage>false</meet:switchPage>
                <meet:fullScreen>false</meet:fullScreen>
                <meet:thumbnail>false</meet:thumbnail>
                <meet:zoom>false</meet:zoom>
                <meet:copyPage>false</meet:copyPage>
                <meet:rcAppShare>true</meet:rcAppShare>
                <meet:rcDesktopShare>true</meet:rcDesktopShare>
                <meet:rcWebTour>true</meet:rcWebTour>
                <meet:javaClient>false</meet:javaClient>
                <meet:nativeClient>false</meet:nativeClient>
                <meet:autoRecord>false</meet:autoRecord>
                <meet:attendeeRecordMeeting>false</meet:attendeeRecordMeeting>
                <meet:voip>true</meet:voip>
                <meet:faxIntoMeeting>false</meet:faxIntoMeeting>
                <meet:enableReg>true</meet:enableReg>
                <meet:supportQandA>true</meet:supportQandA>
                <meet:supportFeedback>true</meet:supportFeedback>
                <meet:supportBreakoutSessions>true</meet:supportBreakoutSessions>
                <meet:supportPanelists>false</meet:supportPanelists>
                <meet:supportRemoteComputer>false</meet:supportRemoteComputer>
                <meet:supportShareWebContent>true</meet:supportShareWebContent>
                <meet:supportUCFWebPages>false</meet:supportUCFWebPages>
                <meet:supportUCFRichMedia>false</meet:supportUCFRichMedia>
                <meet:autoDeleteAfterMeetingEnd>true</meet:autoDeleteAfterMeetingEnd>
                <meet:viewAnyDoc>false</meet:viewAnyDoc>
                <meet:viewAnyPage>false</meet:viewAnyPage>
                <meet:allowContactPrivate>false</meet:allowContactPrivate>
                <meet:chatHost>false</meet:chatHost>
                <meet:chatPresenter>false</meet:chatPresenter>
                <meet:chatAllAttendees>false</meet:chatAllAttendees>
                <meet:multiVideo>false</meet:multiVideo>
                <meet:notes>true</meet:notes>
                <meet:closedCaptions>false</meet:closedCaptions>
                <meet:singleNote>false</meet:singleNote>
                <meet:sendFeedback>false</meet:sendFeedback>
                <meet:displayQuickStartHost>false</meet:displayQuickStartHost>
                <meet:displayQuickStartAttendees>false</meet:displayQuickStartAttendees>
                <meet:supportE2E>false</meet:supportE2E>
                <meet:supportPKI>false</meet:supportPKI>
                <meet:HQvideo>true</meet:HQvideo>
                <meet:HDvideo>true</meet:HDvideo>
                <meet:viewVideoThumbs>true</meet:viewVideoThumbs>
            </meet:enableOptions>
            <meet:schedule>
                <meet:startDate>01/30/2018 11:41:05</meet:startDate>
                <meet:timeZoneID>4</meet:timeZoneID>
                <meet:timeZone>GMT-08:00, Pacific (San Jose)</meet:timeZone>
                <meet:duration>20</meet:duration>
                <meet:openTime>0</meet:openTime>
                <meet:hostWebExID>simon</meet:hostWebExID>
                <meet:showFileStartMode>false</meet:showFileStartMode>
                <meet:showFileContPlayFlag>false</meet:showFileContPlayFlag>
                <meet:showFileInterVal>0</meet:showFileInterVal>
                <meet:entryExitTone>0</meet:entryExitTone>
                <meet:extNotifyTime>0</meet:extNotifyTime>
                <meet:joinTeleconfBeforeHost>false</meet:joinTeleconfBeforeHost>
                <meet:firstAttendeeAsPresenter>true</meet:firstAttendeeAsPresenter>
                <meet:allowAnyoneHostMeeting>false</meet:allowAnyoneHostMeeting>
            </meet:schedule>
            <meet:telephony>
                <meet:telephonySupport>CALLBACK</meet:telephonySupport>
                <meet:numPhoneLines>50</meet:numPhoneLines>
                <meet:enableTSP>false</meet:enableTSP>
                <meet:intlLocalCallIn>false</meet:intlLocalCallIn>
                <meet:teleconfLocation>US</meet:teleconfLocation>
                <meet:callInNum>
                    <serv:tollNum>10224462261</serv:tollNum>
                    <serv:tollFreeNum>10224462262</serv:tollFreeNum>
                </meet:callInNum>
                <meet:tollFree>true</meet:tollFree>
                <meet:isMPAudio>false</meet:isMPAudio>
            </meet:telephony>
            <meet:tracking/>
            <meet:repeat>
                <meet:repeatType>NO_REPEAT</meet:repeatType>
            </meet:repeat>
            <meet:remind/>
            <meet:attendeeOptions>
                <meet:request>true</meet:request>
                <meet:registration>true</meet:registration>
                <meet:auto>false</meet:auto>
                <meet:participantLimit>0</meet:participantLimit>
                <meet:excludePassword>false</meet:excludePassword>
                <meet:joinRequiresAccount>false</meet:joinRequiresAccount>
            </meet:attendeeOptions>
            <meet:meetingkey>demosite</meet:meetingkey>
            <meet:status>NOT_INPROGRESS</meet:status>
            <meet:hostJoined>false</meet:hostJoined>
            <meet:participantsJoined>false</meet:participantsJoined>
            <meet:telePresence>false</meet:telePresence>
            <meet:hostKey>123456</meet:hostKey>
            <meet:eventID>777888999</meet:eventID>
            <meet:guestToken>8653ded57f7e90c51713a3333cdcdb8e</meet:guestToken>
            <meet:hostType>1019001</meet:hostType>
            <meet:isCETMeeting>true</meet:isCETMeeting>
            <meet:meetingLink>https://demosite.qa.webex.com/demosite/j.php?MTID=m8dc0f932c289a680b0a4a67962687d6c</meet:meetingLink>
            <meet:sipURL>888888888@demosite.qa.webex.com</meet:sipURL>
        </serv:bodyContent>
    </serv:body>
</serv:message>