DelSession

Allows hosts to delete their own scheduled session that is not currently
in progress. This operation can be used in place of DelMeeting,
DelTrainingSession, DelEvent, etc.

Note Audio only RCN account information is deleted from the
telephony server when delSession deletes an RCN session.

Request

The sample XML document deletes the meeting with a sessionKey
value of 48591508. Be sure to provide a valid value for your website.


<?xml version="1.0" encoding="UTF-8"?>
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <header>
        <securityContext>
            <webExID>hostid</webExID>
            <password>hostpassword</password>

            
        </securityContext>
    </header>
    <body>
        <bodyContent xsi:type="java:com.webex.service.binding.ep.DelSession">
            <sessionKey>123456789</sessionKey>
        </bodyContent>
    </body>
</serv:message>

Response

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

Figure 4-8 • Schema diagram for delSessionResponse

The sample XML document shows an example of a possible response for the preceding query XML document.


<?xml version="1.0" encoding="UTF-8"?>
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
    xmlns:com="http://www.webex.com/schemas/2002/06/common"
    xmlns:ep="http://www.webex.com/schemas/2002/06/service/ep">
    <serv:header>
        <serv:response>
            <serv:result>SUCCESS</serv:result>
            <serv:gsbStatus>PRIMARY</serv:gsbStatus>
        </serv:response>
    </serv:header>
    <serv:body>
        <serv:bodyContent xsi:type="ep:DelSessionResponse"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
    </serv:body>
</serv:message>