cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
897
Views
0
Helpful
4
Replies

Disable/hide the button to record

robbsom01
Community Member

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

4 Replies 4

ryanhunt
Level 11
Level 11

Hi Robson,

Can you provide the request you are using for scheduling the meeting?

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>

ryanhunt
Level 11
Level 11

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:

Screen Shot 2016-05-24 at 6.27.03 PM.png

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.

Screen Shot 2016-05-24 at 6.28.14 PM.png

Regards,

Ryan

Ok thanks for the help.