This document was generated from CDN thread
Created by: Marcus Newnam on 01-09-2010 07:07:41 PM
Is there a way to pull the status of a scheduled conference via any of the TMS APIs? It was my hope that the collection of conferences returned by GetConferencesForSystem API may contain this information, but it does not.
Thanks for your time,
-Marcus
Subject: RE: Retrieving the status of a scheduled conference via API
Replied by: Torgeir Johansen on 02-09-2010 08:19:23 AM
Marcus,
it is possible to pull the status of scheduled conferences via the GetConferencesForSystem operation. The GetConferencesForSystem has a parameter ConferenceStatus which let the user specify a filter for which conferences they will retrieve from the web service. The valid values for ConferenceStatus is given in the WSDL as one of these:
<s:enumeration value="All" />
<s:enumeration value="AllExceptDeleted" />
<s:enumeration value="Pending" />
<s:enumeration value="Ongoing" />
<s:enumeration value="Finished" />
<s:enumeration value="PendingAndOngoing" />
<s:enumeration value="MeetingRequest" />
<s:enumeration value="Rejected" />
<s:enumeration value="Finished" />
<s:enumeration value="Deleted" />
So, for example, you can retrieve all pending conferences by setting the ConferenceStatus parameter to "Pending".
The default value is "All", that is the web service will return conferences with no status filter.
Regards,
Torgeir Johansen