09-20-2017 11:22 PM - last edited on 03-25-2019 08:57 PM by ciscomoderator
Hi everyone,
I tried to get a list of recording from my trial account, but unfortunately, it always returns no records. I already uploaded 2 recordings and I can see it on 'My Recorded Meetings' section in the WebEx Enterprise Site. The following is my XML request:
string strXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n";
strXML += "<serv:message xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:serv=\"http://www.webex.com/schemas/2002/06/service\">\r\n";
strXML += "<header>\r\n";
strXML += "<securityContext>\r\n";
strXML += "<webExID>webexid</webExID>\r\n";
strXML += "<password>password</password>\r\n";
strXML += "<siteName>aufreetrial</siteName>\r\n";
strXML += "</securityContext>\r\n";
strXML += "</header>\r\n";
strXML += "<body>\r\n";
strXML += "<bodyContent xsi:type=\"java:com.webex.service.binding.ep.LstRecording\">\r\n";
strXML += "<listControl>\r\n";
strXML += "<startFrom>0</startFrom>\r\n";
strXML += "<maximumNum>10</maximumNum>\r\n";
strXML += "</listControl>\r\n";
strXML += "</bodyContent>\r\n";
strXML += "</body>\r\n";
strXML += "</serv:message>\r\n";
Any help will be much appreciated.
Thanks,
Evan
Solved! Go to Solution.
10-22-2017 06:20 PM
Turns out I missed <serviceTypes><serviceType>MeetingCenter</serviceType></serviceTypes> after <listControl>. The documentation in here needs to be updated.
10-22-2017 06:20 PM
Turns out I missed <serviceTypes><serviceType>MeetingCenter</serviceType></serviceTypes> after <listControl>. The documentation in here needs to be updated.
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