XML Request and Response Documents

Webex Meetings XML API uses XML documents for request and response. XML documents are sent via HTTPS POST to https://api.webex.com/WBXService/XMLService. Response data is returned in XML format.

All Webex Meetings XML API request documents follow the same basic formatting. XML request name is included as part of the xsi:type string in the bodyContent declaration. Request specific information or filtering options are included as children of bodyContent. securityContext includes authentication details and Webex site identification.




Example Request

<?xml version="1.0" encoding="UTF-8"?>
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <header>
        <securityContext>
            <siteName>webex_subdomain</siteName>
        </securityContext>
    </header>
    <body>
        <bodyContent xsi:type="java:com.webex.service.binding.ep.GetAPIVersion">
        </bodyContent>
    </body>
</serv:message>

Example Response

<?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" 
 xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting">
    <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:getAPIVersionResponse" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ep:apiVersion>WebEx XML API V11.0.0</ep:apiVersion>
            <ep:release>SP26</ep:release>
            <ep:apiVer>39.7.0</ep:apiVer>
        </serv:bodyContent>
    </serv:body>
</serv:message>