05-22-2016 07:46 AM
Hello,
I am scheduling a meeting via api and tried to disable/hide the button to record the meeting, both as organizer of the guests, but meetingRecord element to false seems to be overlooked, is there any way to disable/hide the record button?
Thank you
05-24-2016 01:12 PM
Hi Robson,
Can you provide the request you are using for scheduling the meeting?
05-24-2016 01:33 PM
Hello, thanks for the help
A detail, I'm testing in the sandbox.
<?xml version="1.0" encoding="ISO-8859-1"?> <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemalocation="http://www.webex.com/schemas/2002/06/service http://www.webex.com/schemas/2002/06/service/service.xsd">
<header>
<securityContext>
<webExID>exid</webExID>
<password>password</password>
<siteID>siteid</siteID>
<partnerID>myid</partnerID>
<email>email@gmail.com</email>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">
<accessControl>
<listToPublic>false</listToPublic>
<isPublic>false</isPublic>
<meetingPassword></meetingPassword>
</accessControl>
<metaData>
<confName>Meeting 02</confName>
<meetingType></meetingType>
<agenda>New AGENDA</agenda>
</metaData>
<participants>
<maxUserNumber>2</maxUserNumber>
<attendees>
<attendee>
<person>
<name>attendee</name>
<email>attendee@gmail.com</email>
</person>
<language>PORTUGUESE</language>
<languageID>18</languageID>
</attendee>
</attendees>
</participants>
<enableOptions>
<chat>true</chat>
<poll>false</poll>
<audioVideo>true</audioVideo>
<meetingRecord>false</meetingRecord>
<multiVideo>true</multiVideo>
<thumbnail>true</thumbnail>
<desktopShare>false</desktopShare>
<fileShare>false</fileShare>
<autoDeleteAfterMeetingEnd>false</autoDeleteAfterMeetingEnd>
<supportUCFWebPages>true</supportUCFWebPages>
<chatHost>true</chatHost>
<chatPresenter>true</chatPresenter>
<attendeeList>true</attendeeList>
</enableOptions>
<schedule>
<startDate>05/23/2016 16:40:10</startDate>
<openTime>900</openTime>
<joinTeleconfBeforeHost>false</joinTeleconfBeforeHost>
<duration>10</duration>
<timeZoneID>16</timeZoneID>
</schedule>
</bodyContent>
</body>
</serv:message>
05-24-2016 05:32 PM
Since your on the sandbox without access to SiteAdmin, your missing the the way its best way to address this.
In the Site Admin you can create a custom Session Type or change the default so recording is disabled, then select that session type when scheduling the meeting.
Here is a screenshot of the session configuration options:
and then when I create a meeting with this session type, either with the API or through the WebUI I get a disabled record button in the WebEx client.
Regards,
Ryan
05-25-2016 08:09 AM
Ok thanks for the help.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide