Hi ,
I am working on integration of webx xml api with our CRM. I have followed the instructions provided at this link -> CloudShell - SSO Saml Redirect and reserve a WebEx Web Conferencing Sandbox and followed the instructions there to create a Provision Webex account. I need to create meeting using xml api for this using these settings
Site URL: https://apidemoeu.webex.com
SiteID: *****
PartnerID: ********
XML Service URL: https://apidemoeu.webex.com/WBXService/XMLService
And try to use a simple api method CreateMeeting with following code:-
<?xml version="1.0" encoding="ISO-8859-1"?>
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<header>
<securityContext>
<webExID>WEbxConfId</webExID>
<password>*******</password>
<siteID>690319</siteID>
<partnerID>g0webx!</partnerID>
<email>***********</email>
</securityContext>
</header>
<body>
<bodyContent
xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">
<accessControl>
<meetingPassword>pass123</meetingPassword>
</accessControl>
<metaData>
<confName>Sample Meeting</confName>
<meetingType>1</meetingType>
<agenda>Test</agenda>
</metaData>
<participants>
<maxUserNumber>4</maxUserNumber>
<attendees><attendee>
<person>
<name>James Kirk</name>
<email>Jkirk@sz.webex.com</email>
</person>
</attendee>
</attendees>
</participants>
<enableOptions>
<chat>true</chat>
<poll>true</poll>
<audioVideo>true</audioVideo>
</enableOptions>
<schedule>
<startDate>06/23/2017 10:10:10</startDate>
<openTime>900</openTime>
<joinTeleconfBeforeHost>true</joinTeleconfBeforeHost>
<duration>20</duration>
<timeZoneID>4</timeZoneID>
</schedule>
<telephony>
<telephonySupport>CALLIN</telephonySupport>
<extTelephonyDescription>Call 1-800-555-1234, Passcode 98765</extTelephonyDescription>
</telephony>
</bodyContent>
</body>
</serv:message>
But Every time I receive following response:-
<?xml version="1.0" encoding="ISO-8859-1"?>
<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>FAILURE</serv:result>
<serv:reason>The user or site does not support this meeting type</serv:reason>
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
<serv:exceptionID>110002</serv:exceptionID>
</serv:response>
</serv:header>
<serv:body>
<serv:bodyContent/>
</serv:body>
</serv:message>
Please let me know how can I achieve create meeting functionality for demo purpose.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
apidemoeu.webex.com does not have a MeetingType of 1 available, hence your error.. you need to either omit this value to use the default or specify one of the following:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments
0 comments
Please sign in to leave a comment.