
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2017 10:28 PM
What is the webex xml api to get training session url?
Solved! Go to Solution.
- Labels:
-
Webex Developer
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2017 09:52 AM
GetjoinurlMeeting will work for Training Center also..
<?xml version="1.0" encoding="UTF-8"?>
<serv:messagexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<header>
<securityContext>
<webExID>HOST_USERNAME</webExID>
<password>PASSWORD</password>
<siteName>SITENAME</siteName>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.webex.service.binding.meeting.GetjoinurlMeeting">
<sessionKey>SESSION_NUMBER_OR_MEETING_NUMBER</sessionKey>
<attendeeName>PARTICIPANT NAME</attendeeName>
<attendeeEmail>participant@example.com</attendeeEmail>
<meetingPW>MEETING_PASSWORD</meetingPW>
</bodyContent>
</body>
</serv:message>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2017 09:52 AM
GetjoinurlMeeting will work for Training Center also..
<?xml version="1.0" encoding="UTF-8"?>
<serv:messagexmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<header>
<securityContext>
<webExID>HOST_USERNAME</webExID>
<password>PASSWORD</password>
<siteName>SITENAME</siteName>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.webex.service.binding.meeting.GetjoinurlMeeting">
<sessionKey>SESSION_NUMBER_OR_MEETING_NUMBER</sessionKey>
<attendeeName>PARTICIPANT NAME</attendeeName>
<attendeeEmail>participant@example.com</attendeeEmail>
<meetingPW>MEETING_PASSWORD</meetingPW>
</bodyContent>
</body>
</serv:message>
