これをチェックしてください: https://communities.cisco.com/docs/DOC-49935
スケジューリング権限を実装する必要があります。スケジュール権限により、基本的に、アカウント (通常はサイト管理者権限を持つアカウント) が別のユーザーに代わってミーティングをスケジュールできます。これを行う前に、使用する「マスター アカウント」を各主催者アカウントのスケジュール権限に追加する必要があります。
XML API を使用すると、次のようなリクエストでこれを行うことができます。
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:serv="http://www.webex.com/schemas/2002/06/service">
<header>
<securityContext>
<webExID>jdoe</webExID>
<password>letmein123</password>
<partnerID>123abc</partnerID>
<siteID>123456</siteID>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.webex.service.binding.user.SetUser">
<webExId>bsmith</webExId>
<schedulingPermission>jdoe</schedulingPermission>
</bodyContent>
</body>
</serv:message>
そして、会議は次のようにスケジュールされます。
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:serv="http://www.webex.com/schemas/2002/06/service">
<header>
<securityContext>
<webExID>jdoe</webExID>
<password>letmein123</password>
<partnerID>123abc</partnerID>
<siteID>123456</siteID>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.webex.service.binding.training.CreateTrainingSession">
<telephony>
<telephonySupport>NONE</telephonySupport>
</telephony>
<accessControl>
<sessionPassword>1q2w3e4r5t</sessionPassword>
</accessControl>
<schedule>
<startDate>07/22/2013 00:00:00</startDate>
<hostWebExID>bsmith</hostWebExID>
</schedule>
<metaData>
<confName>Test</confName>
</metaData>
</bodyContent>
</body>
</serv:message>
一般に、他の操作では、スケジューリング権限を持つ管理者アカウントがセキュリティ コンテキストで使用され、本文の要求とユーザー アカウントが認証されます。